summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure b/configure
index d6a263dc8e..074606dfe9 100755
--- a/configure
+++ b/configure
@@ -884,9 +884,6 @@ fi
# configure and build top-level makefile
#-------------------------------------------------------------------------------
-[ -z "$CFG_HOST_QT_TOOLS_PATH" ] && CFG_HOST_QT_TOOLS_PATH="$outpath/bin"
-CFG_QMAKE_PATH="$CFG_HOST_QT_TOOLS_PATH/qmake"
-
# recreate command line for qmake
set -f
SAVED_IFS=$IFS
@@ -902,4 +899,8 @@ if [ -n "$CFG_TOPLEVEL" ]; then
cd ..
fi
-"$CFG_QMAKE_PATH" -qtconf "$QTCONFFILE" "$relpathMangled" -- "$@"
+if [ -n "$CFG_HOST_QT_TOOLS_PATH" ]; then
+ "$CFG_HOST_QT_TOOLS_PATH/qmake" -qtconf "$QTCONFFILE" "$relpathMangled" -- "$@"
+else
+ "$outpath/bin/qmake" "$relpathMangled" -- "$@"
+fi