From feceec6a7565b18d5b58d113c1368f8cc10d548a Mon Sep 17 00:00:00 2001 From: Gerald Britton Date: Thu, 22 Apr 2004 06:01:47 +0000 Subject: better arch selector for qte BKrev: 40875fcb0JXbO50oAksMRdqa3c8hPw --- qte/qte_2.3.7.oe | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'qte/qte_2.3.7.oe') diff --git a/qte/qte_2.3.7.oe b/qte/qte_2.3.7.oe index 320f239ccf..2c85a946eb 100644 --- a/qte/qte_2.3.7.oe +++ b/qte/qte_2.3.7.oe @@ -20,11 +20,19 @@ S = "${WORKDIR}/qt-${PV}" export QTDIR = "${S}" -ARCH_i686 = "x86" -ARCH_x86_64 = "x86" +def qte_arch(d): + import oe, re + arch = oe.data.getVar('TARGET_ARCH', d, 1) + if re.match("^i.86$", arch): + arch = "x86" + elif arch == "x86_64": + arch = "x86" + return arch + +QTE_ARCH := "${@qte_arch(d)}" EXTRA_OECONF_CONFIG = "-qconfig qpe" -EXTRA_OECONF_ARCH = "-xplatform ${TARGET_OS}-${TARGET_ARCH}-g++" +EXTRA_OECONF_ARCH = "-xplatform ${TARGET_OS}-${QTE_ARCH}-g++" EXTRA_OECONF_ARCH_collie = "-xplatform ${TARGET_OS}-sharp-g++" EXTRA_OECONF_ARCH_ramses = "-xplatform ${TARGET_OS}-ramses-g++" -- cgit v1.2.3