diff options
author | David Robillard <d@drobilla.net> | 2010-12-16 21:57:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-16 21:57:39 +0000 |
commit | 5c371cefc3f74cd9c33083b689920b8b87ada621 (patch) | |
tree | 323b63e9015fd1383f429f03c0ae3f9cfaf7412d | |
parent | 083fdc4feb669e8a8e8b66025118d6a0c80d00ab (diff) | |
download | lv2-5c371cefc3f74cd9c33083b689920b8b87ada621.tar.xz |
Fix use of CCFLAGS (now CFLAGS).
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ def configure(conf): conf.sub_config('core.lv2'); conf.check_tool('compiler_cc') conf.check_tool('compiler_cxx') - conf.env.append_value('CCFLAGS', '-std=c99') + conf.env.append_value('CFLAGS', '-std=c99') pat = conf.env['cshlib_PATTERN'] ext = pat[pat.rfind('.'):] conf.env.append_value('cshlib_EXTENSION', ext) |