Skip to content

Commit

Permalink
Linux: Deploy clang binaries to new libexec directory
Browse files Browse the repository at this point in the history
moved from bin/ to libexec/ in master

Change-Id: If6fd0b3241fbb62b09b163b6063a831c1bf592a4
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: Christian Stenger <[email protected]>
  • Loading branch information
e4z9 committed Aug 4, 2015
1 parent 02f1ade commit b140117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deployqt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit b140117

Please sign in to comment.