From c4907ca73096ec2403fe24a00a24313bd95f5228 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 8 Aug 2012 21:09:03 +0000 Subject: Clean up wscript files. git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4624 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 9d491ad..aad012c 100644 --- a/wscript +++ b/wscript @@ -29,7 +29,7 @@ def configure(conf): autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0', uselib_store='LV2') autowaf.display_msg(conf, "LV2 bundle directory", - conf.env['LV2DIR']) + conf.env.LV2DIR) print('') def build(bld): @@ -48,7 +48,7 @@ def build(bld): install_path = '${LV2DIR}/mda.lv2') # Make a pattern for shared objects without the 'lib' prefix - module_pat = re.sub('^lib', '', bld.env['cxxshlib_PATTERN']) + module_pat = re.sub('^lib', '', bld.env.cxxshlib_PATTERN) module_ext = module_pat[module_pat.rfind('.'):] # Build manifest by substitution @@ -110,7 +110,7 @@ def build(bld): 'URI_PREFIX="http://drobilla.net/plugins/mda/"', 'PLUGIN_URI_SUFFIX="%s"' % p, 'PLUGIN_HEADER="src/mda%s.h"' % p]) - obj.env['cxxshlib_PATTERN'] = module_pat + obj.env.cxxshlib_PATTERN = module_pat # Install data file bld.install_files('${LV2DIR}/' + bundle, os.path.join(bundle, p + '.ttl')) -- cgit v1.2.1