From b8c222d793afb97a6d7afc749bd938fcd46f40c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Fri, 20 Jun 2008 00:28:33 +0200 Subject: [PATCH] Fix CCFLAGS in wscript --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index eaaa9fdf..17fa3af1 100644 --- a/wscript +++ b/wscript @@ -54,7 +54,7 @@ def configure (conf): conf.define ('GETTEXT_PACKAGE', APPNAME) conf.write_config_header ('config.h') - conf.env['CCFLAGS'] += ['-DHAVE_CONFIG_H'] + conf.env.append_value ('CCFLAGS', '-DHAVE_CONFIG_H') def set_options (opt): opt.tool_options ('compiler_cc')