diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-10 23:17:25 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-04-11 21:10:33 +0200 |
commit | 60281cbfe4f4f5087d0f77e5b3b7b1a46edc741d (patch) | |
tree | 51d3799c860b1b13e0702ec41409fd65bb351c2b /package | |
parent | bc59823bd553c7422170d0d20c83d394c9581aea (diff) | |
download | buildroot-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')
-rw-r--r-- | package/Makefile.in | 1 | ||||
-rw-r--r-- | package/qt/qt.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index efb4dec34..8f1a29db2 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -187,7 +187,6 @@ HOST_ARCH:=$(shell $(HOSTCC) -dumpmachine | sed -e s'/-.*//' \ -e 's/i[3-9]86/i386/' \ -e 's/xtensa.*/xtensa/' \ ) -GNU_HOST_NAME:=$(HOST_ARCH)-$(call qstrip,$(BR2_GNU_BUILD_SUFFIX)) TARGET_CONFIGURE_OPTS=PATH=$(TARGET_PATH) \ AR="$(TARGET_AR)" \ 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 |