fix bundled LV2 plugin deployment.
authorRobin Gareus <robin@gareus.org>
Mon, 14 Sep 2015 01:21:13 +0000 (03:21 +0200)
committerRobin Gareus <robin@gareus.org>
Mon, 14 Sep 2015 01:24:21 +0000 (03:24 +0200)
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.

wscript

diff --git a/wscript b/wscript
index 4e97d480a331759c962ee9c890e1bb25926a4f5f..b24e561e960decd4e2a52675817ce11aecbfee82 100644 (file)
--- 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'])