summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-03 05:44:29 +0000
committerDavid Robillard <d@drobilla.net>2009-03-03 05:44:29 +0000
commite865ad258c0f3dfcbc8a08d1501b5f28274c3461 (patch)
tree7ffb9d96b07e4ead2d469b52495cdc2b36dbbb7c
parentfba77c1c7a1693f4abec455d116a93376506c5a4 (diff)
downloadpatchage-e865ad258c0f3dfcbc8a08d1501b5f28274c3461.tar.gz
patchage-e865ad258c0f3dfcbc8a08d1501b5f28274c3461.tar.bz2
patchage-e865ad258c0f3dfcbc8a08d1501b5f28274c3461.zip
Fix path stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1946 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript b/wscript
index 60a2545..d3f770b 100644
--- a/wscript
+++ b/wscript
@@ -81,10 +81,10 @@ def configure(conf):
conf.env['APP_INSTALL_NAME'] = Options.options.patchage_install_name
conf.env['APP_HUMAN_NAME'] = Options.options.patchage_human_name
if conf.env['BUNDLE']:
- conf.define('PATCHAGE_DATA_DIR', os.path.normpath(
- conf.env['DATADIRNAME'] + conf.env['APP_INSTALL_NAME']))
+ conf.define('PATCHAGE_DATA_DIR', os.path.join(
+ conf.env['DATADIR'] + conf.env['APP_INSTALL_NAME']))
else:
- conf.define('PATCHAGE_DATA_DIR', os.path.normpath(
+ conf.define('PATCHAGE_DATA_DIR', os.path.join(
conf.env['DATADIR'] + conf.env['APP_INSTALL_NAME']))
conf.write_config_header('wafconfig.h')