summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-01-14 19:35:24 +0000
committerDavid Robillard <d@drobilla.net>2012-01-14 19:35:24 +0000
commitd4fad3ec5cf509406cbfcf379c828d77b0e67d7c (patch)
tree9e4d53550ace8481045a28e5559b0def4816f0ff /wscript
parentae3f0b93049194bdefefd6226d5080cf28f5d67a (diff)
downloadingen-d4fad3ec5cf509406cbfcf379c828d77b0e67d7c.tar.gz
ingen-d4fad3ec5cf509406cbfcf379c828d77b0e67d7c.tar.bz2
ingen-d4fad3ec5cf509406cbfcf379c828d77b0e67d7c.zip
Fix broken link to engine library in saved bundles (fix #806).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3944 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript9
1 files changed, 7 insertions, 2 deletions
diff --git a/wscript b/wscript
index b89286b5..5455fc93 100644
--- a/wscript
+++ b/wscript
@@ -104,8 +104,12 @@ def configure(conf):
if conf.is_defined('HAVE_JACK'):
autowaf.define(conf, 'HAVE_JACK_MIDI', 1)
- autowaf.define(conf, 'INGEN_DATA_DIR', os.path.join(conf.env['DATADIR'], 'ingen'))
- autowaf.define(conf, 'INGEN_MODULE_DIR', conf.env['LIBDIR'])
+ autowaf.define(conf, 'INGEN_DATA_DIR',
+ os.path.join(conf.env['DATADIR'], 'ingen'))
+ autowaf.define(conf, 'INGEN_MODULE_DIR',
+ conf.env['LIBDIR'])
+ autowaf.define(conf, 'INGEN_BUNDLE_DIR',
+ os.path.join(conf.env['LV2DIR'], 'ingen.lv2'))
if Options.options.log_debug:
autowaf.define(conf, 'RAUL_LOG_DEBUG', 1)
@@ -122,6 +126,7 @@ def configure(conf):
autowaf.display_msg(conf, "HTTP", conf.is_defined('HAVE_SOUP'))
autowaf.display_msg(conf, "LV2", conf.is_defined('HAVE_LILV'))
autowaf.display_msg(conf, "GUI", str(conf.env['INGEN_BUILD_GUI'] == 1))
+ autowaf.display_msg(conf, "LV2 Bundle", conf.env['INGEN_BUNDLE_DIR'])
autowaf.display_msg(conf, "HTML plugin documentation support",
conf.is_defined('HAVE_WEBKIT'))
print('')