mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
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.
This commit is contained in:
parent
d83889079b
commit
67aa2f8763
1 changed files with 1 additions and 1 deletions
2
wscript
2
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'])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue