summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-09-14 03:21:13 +0200
committerRobin Gareus <robin@gareus.org>2015-09-14 03:24:21 +0200
commit67aa2f876344e6052d634575529e9821f6458f9e (patch)
tree62dd9ac2f4532d0b56d93ac910111201c520cfa4 /wscript
parentd83889079bc5ad1c5c42a0b7284d6e8ef0dd141e (diff)
fix bundled LV2 plugin deployment.
Ardour Application bundles use uppercase LV2, consistent with LV2 "the name" on http://lv2plug.in/ and the recommendation for OSX & Win on http://lv2plug.in/pages/filesystem-hierarchy-standard.html/ Since this is for internal-use only, so we do not need to follow the lowercase Unix recommendation.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 4e97d480a3..b24e561e96 100644
--- a/wscript
+++ b/wscript
@@ -799,7 +799,7 @@ def configure(conf):
if Options.options.lv2dir:
conf.env['LV2DIR'] = Options.options.lv2dir
else:
- conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'ardour' + str(conf.env['MAJOR']), 'lv2')
+ conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], 'ardour' + str(conf.env['MAJOR']), 'LV2')
conf.env['LV2DIR'] = os.path.normpath(conf.env['LV2DIR'])