summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-04-09 13:45:10 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-10 17:51:36 +0200
commit2c5188f0777f4a0723b4cb9fd36354a357145519 (patch)
treefdd58b722f9e3ce19486df8f61ef9c63f0a4bbd2
parentf0425e115e5fe5d29191f0752659a28e9a4b6757 (diff)
Don't use UNAME_MACHINE on Linux
We don't need it. Let linux-g++ be the default on all Linux builds, period. Task-number: QTBUG-30590 Change-Id: I26c73bf4f054684763b64ef5651b3488363ea7a1 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-rwxr-xr-xconfigure9
1 files changed, 1 insertions, 8 deletions
diff --git a/configure b/configure
index f55e2f622b..6d68ed2682 100755
--- a/configure
+++ b/configure
@@ -2565,14 +2565,7 @@ if [ -z "$PLATFORM" ]; then
"
;;
Linux:*)
- case "$UNAME_MACHINE" in
- x86_64|s390x|ppc64)
- PLATFORM=linux-g++-64
- ;;
- *)
- PLATFORM=linux-g++
- ;;
- esac
+ PLATFORM=linux-g++
PLATFORM_NOTES="
- Also available for Linux: linux-kcc linux-icc linux-cxx
"