fix bundled LV2 installation path (waf install)

This commit is contained in:
Robin Gareus 2015-01-20 18:01:38 +01:00
parent e6b696690a
commit dfba00766c
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ def configure(conf):
if Options.options.lv2dir:
conf.env['LV2DIR'] = Options.options.lv2dir
else:
conf.env['LV2DIR'] = os.path.join(conf.env['LIBDIR'], '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'])