From 6340f5cf378f38809cb1cd58ef5df2e3fe07066e Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Thu, 12 Jan 2012 20:25:49 +0100 Subject: Fix rpath call (not calling chrpath through shell anymore). Change-Id: Ia966c154e0827ce7dc0c4d0a3a45d234f82d0e90 Reviewed-by: Oswald Buddenhagen --- scripts/deployqt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/deployqt.py b/scripts/deployqt.py index e025d985e5..2c1fa96d13 100755 --- a/scripts/deployqt.py +++ b/scripts/deployqt.py @@ -88,7 +88,7 @@ def fix_rpaths_helper(chrpath_bin, install_dir, dirpath, filenames): for filename in filenames: fpath = os.path.join(dirpath, filename) relpath = os.path.relpath(install_dir+'/lib/qtcreator', dirpath) - command = [chrpath_bin, '-r', '\\$ORIGIN/'+relpath, fpath] + command = [chrpath_bin, '-r', '$ORIGIN/'+relpath, fpath] print fpath, ':', command try: subprocess.check_call(command) -- cgit v1.2.1