summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2021-08-03 14:56:35 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-08-05 04:33:48 +0000
commit95a7772758c27cb71e358bc67d9f987d3a13f6fe (patch)
tree4d3387adabe2e06893477f03d64471143ead1203 /configure
parent851b6e9d10bde5476429ad4e2f2462e2efc70245 (diff)
Remove unsupported, host-related options from configure shell script
This amends commit d9a9eca54d. Change-Id: I762090ac9c7ea15a176efe4eb6d39d5c4b653726 Reviewed-by: Kai Koehne <kai.koehne@qt.io> (cherry picked from commit 00b7679d7a4f1d4c173ad9ad68875c22ebe76d6d) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 0 insertions, 17 deletions
diff --git a/configure b/configure
index a0c07ded48..d4b391b243 100755
--- a/configure
+++ b/configure
@@ -159,8 +159,6 @@ while [ "$#" -gt 0 ]; do
-examplesdir| \
-testsdir| \
-hostdatadir| \
- -hostbindir| \
- -hostlibdir| \
-extprefix| \
-sysroot| \
-make| \
@@ -174,7 +172,6 @@ while [ "$#" -gt 0 ]; do
-android-sdk| \
-android-ndk| \
-android-ndk-platform| \
- -android-ndk-host| \
-android-arch)
VAR=`echo $1 | sed 's,^-\(.*\),\1,'`
shift
@@ -190,17 +187,6 @@ while [ "$#" -gt 0 ]; do
VAR=`echo $1 | sed 's,^-[^-]*-\(.*\),\1,'`
VAL=`echo $1 | sed 's,^-\([^-]*\)-.*,\1,'`
;;
- #Options that cannot be generalized
- -hostprefix)
- VAR=`echo $1 | sed 's,^-\(.*\),\1,'`
- # this option may or may not be followed by an argument
- if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
- VAL=$outpath
- else
- shift;
- VAL=$1
- fi
- ;;
#General options, including Qt style yes options
-*)
VAR=`echo $1 | sed 's,^-\(.*\),\1,'`
@@ -217,9 +203,6 @@ while [ "$#" -gt 0 ]; do
UNKNOWN_OPT=no
case "$VAR" in
- external-hostbindir)
- CFG_HOST_QT_TOOLS_PATH="$VAL"
- ;;
h|help)
if [ "$VAL" = "yes" ]; then
OPT_HELP="$VAL"