From 01c5bc356a4ea065c12bc023123cf242353605f8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 27 Nov 2008 16:53:05 +0000 Subject: Fix double slash in binary path in installed patchage.desktop. git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1795 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index b55e330..2851320 100644 --- a/wscript +++ b/wscript @@ -143,7 +143,7 @@ def build(bld): obj.source = 'patchage.desktop.in' obj.target = 'patchage.desktop' obj.dict = { - 'BINDIR' : bld.env()['BINDIR'], + 'BINDIR' : os.path.normpath(bld.env()['BINDIR']), 'APP_INSTALL_NAME' : bld.env()['APP_INSTALL_NAME'], 'APP_HUMAN_NAME' : bld.env()['APP_HUMAN_NAME'], } -- cgit v1.2.1