diff options
author | David Robillard <d@drobilla.net> | 2010-11-26 00:02:10 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-11-26 00:02:10 +0000 |
commit | d60f8a0fba5dfc10cafadf13a6debed8ba832f24 (patch) | |
tree | 0549e89b70c2dfd0ee99627332a031284f42d3ec /wscript | |
parent | 90229f42853a05df42297d529840a6be2f267aad (diff) | |
download | ingen-d60f8a0fba5dfc10cafadf13a6debed8ba832f24.tar.gz ingen-d60f8a0fba5dfc10cafadf13a6debed8ba832f24.tar.bz2 ingen-d60f8a0fba5dfc10cafadf13a6debed8ba832f24.zip |
Install all ingen modules to ${LIBDIR} instead of ${LIBDIR}/ingen so dynamic linker can find dependent libraries.
(Previous scheme doesn't build on OSX, this way is probably better anyway, though perhaps they should all be versioned...)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2672 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -67,13 +67,11 @@ def configure(conf): if conf.env['BUNDLE']: conf.define('INGEN_DATA_DIR', os.path.join( conf.env['DATADIRNAME'], 'ingen')) - conf.define('INGEN_MODULE_DIR', os.path.join( - conf.env['LIBDIRNAME'], 'ingen')) + conf.define('INGEN_MODULE_DIR', conf.env['LIBDIRNAME']) else: conf.define('INGEN_DATA_DIR', os.path.join( conf.env['DATADIR'], 'ingen')) - conf.define('INGEN_MODULE_DIR', os.path.join( - conf.env['LIBDIR'], 'ingen')) + conf.define('INGEN_MODULE_DIR', conf.env['LIBDIR']) if Options.options.log_debug: conf.define('LOG_DEBUG', 1) |