summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2015-07-10 14:14:25 +0200
committerEike Ziller <eike.ziller@theqtcompany.com>2015-08-04 11:04:18 +0000
commitb1401173dec00bb1ccc39ab5f8f83625f3aa0909 (patch)
treeaf463f25ba67a8bf0215431429725c169242c04c /scripts
parent02f1aded7d3a397fa589b8b480a914cdb992d1f3 (diff)
downloadqt-creator-b1401173dec00bb1ccc39ab5f8f83625f3aa0909.tar.gz
Linux: Deploy clang binaries to new libexec directory
moved from bin/ to libexec/ in master Change-Id: If6fd0b3241fbb62b09b163b6063a831c1bf592a4 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.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 00b70d1af4..e7e3319dae 100755
--- a/scripts/deployqt.py
+++ b/scripts/deployqt.py
@@ -244,7 +244,7 @@ def copy_libclang(install_dir, llvm_install_dir):
for libsource in libsources:
deployinfo.append((libsource, os.path.join(install_dir, 'lib', 'qtcreator')))
clangbinary = os.path.join(llvm_install_dir, 'bin', 'clang')
- clangbinary_targetdir = os.path.join(install_dir, 'bin')
+ clangbinary_targetdir = os.path.join(install_dir, 'libexec', 'qtcreator')
deployinfo.append((clangbinary, clangbinary_targetdir))
# copy link target if clang is actually a symlink
if os.path.islink(clangbinary):