diff --git a/scripts/deployqt.py b/scripts/deployqt.py index e025d985e50f1651c0dc8a01f5d1e1445268d90e..2c1fa96d13487ed884e1faa45dbf7b4617e433f9 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)