summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-03 15:39:49 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-09 09:08:01 +0000
commit6d5a5aff9462b4253047f0ed2707ffa2e3497a19 (patch)
tree8098bf6e2532402e536ff7f4da653a2f9ba13803 /scripts
parentbc6b81fb50045bcfd6f789e7a4998ea682220b7a (diff)
downloadqt-creator-6d5a5aff9462b4253047f0ed2707ffa2e3497a19.tar.gz
Use a proper libexec path for Unix builds.
Change-Id: I036c806af47f07e60408a90d3a4e181a6773f866 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/deployqt.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/deployqt.py b/scripts/deployqt.py
index f7bf539f2f..23d2074785 100755
--- a/scripts/deployqt.py
+++ b/scripts/deployqt.py
@@ -117,6 +117,9 @@ def fix_rpaths(chrpath_bin, install_dir):
#TODO remove library_helper once all libs moved out of bin/ on linux
filenames = [filename for filename in filenames if check_unix_binary_exec_helper(dirpath, filename) or check_unix_library_helper(dirpath, filename)]
fix_rpaths_helper(chrpath_bin, install_dir, dirpath, filenames)
+ for dirpath, dirnames, filenames in os.walk(os.path.join(install_dir, 'libexec', 'qtcreator')):
+ filenames = [filename for filename in filenames if check_unix_binary_exec_helper(dirpath, filename)]
+ fix_rpaths_helper(chrpath_bin, install_dir, dirpath, filenames)
for dirpath, dirnames, filenames in os.walk(os.path.join(install_dir, 'lib')):
filenames = [filename for filename in filenames if check_unix_library_helper(dirpath, filename)]
fix_rpaths_helper(chrpath_bin, install_dir, dirpath, filenames)