diff options
author | David Robillard <d@drobilla.net> | 2011-07-17 14:37:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-07-17 14:37:59 +0000 |
commit | a982ab0c26168e665752b0638b340ca9a63b0c1f (patch) | |
tree | b878ba377c70bdc7e485f4ddda5f8bdd411b87b8 | |
parent | 4a4e010cb4429bb56445f006ac16535c37b2e6de (diff) | |
download | lv2-a982ab0c26168e665752b0638b340ca9a63b0c1f.tar.xz |
Fix configuration of core.lv2
-rw-r--r-- | core.lv2/wscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core.lv2/wscript b/core.lv2/wscript index ae0b262..ba6e377 100644 --- a/core.lv2/wscript +++ b/core.lv2/wscript @@ -17,16 +17,19 @@ top = '.' out = 'build' def options(opt): + autowaf.set_options(opt) + opt.load('compiler_c') opt.add_option('--default-lv2-path', type='string', default='', dest='default_lv2_path', help="Default LV2 path to use if $LV2_PATH is unset") opt.add_option('--bundle-only', action='store_true', default=False, dest='bundle_only', help="Only install LV2 bundle (not header or pkg-config file)") - autowaf.set_options(opt) def configure(conf): autowaf.configure(conf) + conf.load('compiler_c') + lv2core_path_sep = ':' lv2core_dir_sep = '/' if sys.platform == 'win32': |