aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-08 21:09:03 +0000
committerDavid Robillard <d@drobilla.net>2012-08-08 21:09:03 +0000
commitc4907ca73096ec2403fe24a00a24313bd95f5228 (patch)
tree5179c755a8024ca9ed1c2249639299e5a10a1e54
parent53956174abbea01503ce1fd32d3b675e093530b4 (diff)
downloadmda.lv2-c4907ca73096ec2403fe24a00a24313bd95f5228.tar.gz
mda.lv2-c4907ca73096ec2403fe24a00a24313bd95f5228.tar.bz2
mda.lv2-c4907ca73096ec2403fe24a00a24313bd95f5228.zip
Clean up wscript files.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4624 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
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'))