summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)