From 41a14d4a9a07d85b915737063102f401cf15d5c5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 6 Aug 2012 19:36:46 +0000 Subject: Fix recursive building. --- plugins/eg-synth.lv2/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/eg-synth.lv2') diff --git a/plugins/eg-synth.lv2/wscript b/plugins/eg-synth.lv2/wscript index 7c3cbba..5813fb8 100644 --- a/plugins/eg-synth.lv2/wscript +++ b/plugins/eg-synth.lv2/wscript @@ -25,7 +25,7 @@ def configure(conf): conf.env.append_unique('CFLAGS', '-std=c99') if not autowaf.is_child(): - autowaf.check_pkg(conf, 'lv2core', uselib_store='LV2CORE') + autowaf.check_pkg(conf, 'lv2', uselib_store='LV2') autowaf.display_msg(conf, "LV2 bundle directory", conf.env['LV2DIR']) print('') @@ -63,6 +63,6 @@ def build(bld): name = 'synth', target = '%s/synth' % bundle, install_path = '${LV2DIR}/%s' % bundle, - uselib = 'LV2CORE', + uselib = 'LV2', includes = includes) obj.env['cshlib_PATTERN'] = module_pat -- cgit v1.2.1