Fix CCFLAGS in wscript
This commit is contained in:
parent
9ab74673a8
commit
b8c222d793
1 changed files with 1 additions and 1 deletions
2
wscript
2
wscript
|
@ -54,7 +54,7 @@ def configure (conf):
|
||||||
conf.define ('GETTEXT_PACKAGE', APPNAME)
|
conf.define ('GETTEXT_PACKAGE', APPNAME)
|
||||||
|
|
||||||
conf.write_config_header ('config.h')
|
conf.write_config_header ('config.h')
|
||||||
conf.env['CCFLAGS'] += ['-DHAVE_CONFIG_H']
|
conf.env.append_value ('CCFLAGS', '-DHAVE_CONFIG_H')
|
||||||
|
|
||||||
def set_options (opt):
|
def set_options (opt):
|
||||||
opt.tool_options ('compiler_cc')
|
opt.tool_options ('compiler_cc')
|
||||||
|
|
Loading…
Reference in a new issue