From a982ab0c26168e665752b0638b340ca9a63b0c1f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 17 Jul 2011 14:37:59 +0000 Subject: Fix configuration of core.lv2 --- core.lv2/wscript | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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': -- cgit v1.2.1