diff options
author | Chris Larson <clarson@kergoth.com> | 2004-02-04 02:45:39 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-02-04 02:45:39 +0000 |
commit | ad689084aefc0e94257d2a084e5d95f67b5d88d0 (patch) | |
tree | fc319109f6d216404ba1301f1162997f6c73588a | |
parent | 23cd06e685243a58210df5b30290580e26fe021a (diff) |
Dont explicitly specify -platform in the qte builds, let it pick that up itself.
BKrev: 40205cd3_BgLkovDucnOt2JcJmBXIQ
-rw-r--r-- | qte/qte_2.3.6.oe | 2 | ||||
-rw-r--r-- | qte/qte_2.3.7.oe | 3 | ||||
-rw-r--r-- | qte/qte_2.3.8-snap.oe | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/qte/qte_2.3.6.oe b/qte/qte_2.3.6.oe index 248f4cfa64..1cfd939451 100644 --- a/qte/qte_2.3.6.oe +++ b/qte/qte_2.3.6.oe @@ -46,7 +46,7 @@ do_configure() { if [ "$BUILD_ARCH" = "i686" ]; then BUILD_ARCH=x86 fi - echo yes | ./configure -platform $BUILD_OS-$BUILD_ARCH-g++ $EXTRA_OECONF || die "Configuring qt failed" + echo yes | ./configure $EXTRA_OECONF || die "Configuring qt failed" } do_compile() { diff --git a/qte/qte_2.3.7.oe b/qte/qte_2.3.7.oe index 248f4cfa64..cf644df414 100644 --- a/qte/qte_2.3.7.oe +++ b/qte/qte_2.3.7.oe @@ -22,6 +22,7 @@ S="${WORKDIR}/qt-${PV}" export QTDIR = ${S} ARCH_i686=x86 +ARCH_x86_64=x86 EXTRA_OECONF_CONFIG=-qconfig qpe EXTRA_OECONF_ARCH=-xplatform ${TARGET_OS}-${TARGET_ARCH}-g++ @@ -46,7 +47,7 @@ do_configure() { if [ "$BUILD_ARCH" = "i686" ]; then BUILD_ARCH=x86 fi - echo yes | ./configure -platform $BUILD_OS-$BUILD_ARCH-g++ $EXTRA_OECONF || die "Configuring qt failed" + echo yes | ./configure $EXTRA_OECONF || die "Configuring qt failed" } do_compile() { diff --git a/qte/qte_2.3.8-snap.oe b/qte/qte_2.3.8-snap.oe index 843c0c0711..7d8e0ad021 100644 --- a/qte/qte_2.3.8-snap.oe +++ b/qte/qte_2.3.8-snap.oe @@ -47,7 +47,7 @@ do_configure() { if [ "$BUILD_ARCH" = "i686" ]; then BUILD_ARCH=x86 fi - echo yes | ./configure -platform $BUILD_OS-$BUILD_ARCH-g++ $EXTRA_OECONF || die "Configuring qt failed" + echo yes | ./configure $EXTRA_OECONF || die "Configuring qt failed" } do_compile() { |