summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@qt.io>2022-09-26 13:37:37 +0200
committerCristian Adam <cristian.adam@qt.io>2022-09-26 13:25:50 +0000
commit5bcb2e4c581dc8800e71df310016f6fabe60bdba (patch)
treea8f8570d5c396f17ae81ff1e7f26bfd3597de2a6 /scripts
parent5a156395c4df7c84d514a7a794668c380550bac2 (diff)
downloadqt-creator-5bcb2e4c581dc8800e71df310016f6fabe60bdba.tar.gz
scripts: Remove clangbackend from deployqtHelper_mac.sh
Since we moved to clangd the file doesn't exist anymore. When creating the dmg packaging the process would print multiple errors pointing to the fact that the clangbackend file doesn't exist. Change-Id: I172cfa43e67ec4aa9e5e2f8b703e024b803c78a1 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/deployqtHelper_mac.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/deployqtHelper_mac.sh b/scripts/deployqtHelper_mac.sh
index d57c0f8401..a4afd7f20a 100755
--- a/scripts/deployqtHelper_mac.sh
+++ b/scripts/deployqtHelper_mac.sh
@@ -108,7 +108,6 @@ if [ $LLVM_INSTALL_DIR ]; then
install_name_tool -add_rpath "@executable_path/../lib" "$libexec_path/clang/bin/clazy-standalone" 2> /dev/null
install_name_tool -delete_rpath "/Users/qt/work/build/libclang/lib" "$libexec_path/clang/bin/clazy-standalone" 2> /dev/null
fi
- clangbackendArgument="-executable=$libexec_path/clangbackend"
fi
#### macdeployqt
@@ -142,8 +141,7 @@ if [ ! -d "$app_path/Contents/Frameworks/QtCore.framework" ]; then
"-executable=$libexec_path/buildoutputparser" \
"-executable=$libexec_path/cpaster" \
"${qbsArguments[@]}" \
- "$qml2puppetArgument" \
- "$clangbackendArgument" || exit 1
+ "$qml2puppetArgument" || exit 1
fi