aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/deployqtHelper_mac.sh
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2015-05-17 17:07:47 -0700
committerEike Ziller <eike.ziller@theqtcompany.com>2015-05-18 12:40:37 +0000
commit69d5fc12578dc5d7a65bfe17aa7a4e904c9bb103 (patch)
treeef5bc87023203e94f30c291338cc0f4af790ec0b /scripts/deployqtHelper_mac.sh
parentc427650d62c369ed71d95cacd05c21dd7bf79810 (diff)
Run macdeployqt for the remaining auxiliary executables.
This fixes broken library paths for buildoutputparser and qbs executables on OS X, making them unusable out of the box. Task-number: QTCREATORBUG-14432 Change-Id: I81c64f962b0a1eee2800da04b5202f5fd9efb706 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'scripts/deployqtHelper_mac.sh')
-rwxr-xr-xscripts/deployqtHelper_mac.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/deployqtHelper_mac.sh b/scripts/deployqtHelper_mac.sh
index 974e008043d..638cc2f0069 100755
--- a/scripts/deployqtHelper_mac.sh
+++ b/scripts/deployqtHelper_mac.sh
@@ -83,6 +83,8 @@ if [ ! -d "$1/Contents/Frameworks/QtCore.framework" ]; then
qml2puppetArgument="-executable=$qml2puppetapp"
fi
+ qbsapp="$1/Contents/MacOS/qbs"
+
echo "- Running macdeployqt ($(which macdeployqt))"
macdeployqt "$1" \
@@ -91,6 +93,14 @@ if [ ! -d "$1/Contents/Frameworks/QtCore.framework" ]; then
"-executable=$1/Contents/Resources/ios/iostool" \
"-executable=$1/Contents/Resources/ios/iossim" \
"-executable=$1/Contents/Resources/ios/iossim_1_8_2" \
+ "-executable=$1/Contents/MacOS/buildoutputparser" \
+ "-executable=$qbsapp" \
+ "-executable=$qbsapp-config" \
+ "-executable=$qbsapp-config-ui" \
+ "-executable=$qbsapp-qmltypes" \
+ "-executable=$qbsapp-setup-android" \
+ "-executable=$qbsapp-setup-qt" \
+ "-executable=$qbsapp-setup-toolchains" \
"$qmlpuppetArgument" "$qml2puppetArgument" || exit 1
fi