summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Molkentin <daniel.molkentin@nokia.com>2012-01-12 20:25:49 +0100
committerDaniel Molkentin <daniel.molkentin@nokia.com>2012-01-13 10:09:22 +0100
commit6340f5cf378f38809cb1cd58ef5df2e3fe07066e (patch)
treec4ef94f1872cd2ffe7f4dd98ffc2785935d559ae /scripts
parentf7ca05e4b99a5398b9c0a52ed8bd14f6a3f1a017 (diff)
downloadqt-creator-6340f5cf378f38809cb1cd58ef5df2e3fe07066e.tar.gz
Fix rpath call (not calling chrpath through shell anymore).
Change-Id: Ia966c154e0827ce7dc0c4d0a3a45d234f82d0e90 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/deployqt.py2
1 files changed, 1 insertions, 1 deletions
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)