diff options
author | David Robillard <d@drobilla.net> | 2011-09-27 19:45:13 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-27 19:45:13 +0000 |
commit | 42c0f6d4466d91353e40c469b5e32abf31ce16b8 (patch) | |
tree | 8f19ceccc98afd3aa54e53175e42d08954624e39 /wscript | |
parent | c50d8613652cb7b1a88a8a0603e9b553ee3fd4c4 (diff) | |
download | jalv-42c0f6d4466d91353e40c469b5e32abf31ce16b8.tar.gz jalv-42c0f6d4466d91353e40c469b5e32abf31ce16b8.tar.bz2 jalv-42c0f6d4466d91353e40c469b5e32abf31ce16b8.zip |
Avoid adding -std=c99 to command line repeatedly.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3496 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ def configure(conf): if not Options.options.no_jack_session: autowaf.define(conf, 'JALV_JACK_SESSION', 1) - conf.env.append_value('CFLAGS', '-std=c99') + conf.env.append_unique('CFLAGS', '-std=c99') autowaf.define(conf, 'JALV_VERSION', JALV_VERSION) conf.write_config_header('jalv-config.h', remove=False) |