summaryrefslogtreecommitdiffstats
path: root/package/qt
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-04-10 23:17:25 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-04-11 21:10:33 +0200
commit60281cbfe4f4f5087d0f77e5b3b7b1a46edc741d (patch)
tree51d3799c860b1b13e0702ec41409fd65bb351c2b /package/qt
parentbc59823bd553c7422170d0d20c83d394c9581aea (diff)
downloadbuildroot-novena-60281cbfe4f4f5087d0f77e5b3b7b1a46edc741d.tar.gz
buildroot-novena-60281cbfe4f4f5087d0f77e5b3b7b1a46edc741d.zip
Guess build system and remove BR2_GNU_BUILD_SUFFIX
Instead of having a configuration option BR2_GNU_BUILD_SUFFIX, let's use config.guess to guess the build system type. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qt')
-rw-r--r--package/qt/qt.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index 91673491a..4f42e59e8 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -372,7 +372,7 @@ BR2_PACKAGE_QT_EMB_PLATFORM:=$(call qstrip,$(BR2_PACKAGE_QT_EMB_PLATFORM))
# x86x86fix
# Workaround Qt Embedded bug when crosscompiling for x86 under x86 with linux
# host. It's unclear if this would happen on other hosts.
-ifneq ($(findstring pc-linux,$(BR2_GNU_BUILD_SUFFIX)),)
+ifneq ($(findstring unknown-linux,$(GNU_HOST_NAME)),)
ifneq ($(findstring x86,$(BR2_PACKAGE_QT_EMB_PLATFORM)),)
QT_CONFIGURE+= -platform linux-g++
endif