[oe-commits] Darren Hart : grub: Use COMPATIBLE_HOST

git at git.openembedded.org git at git.openembedded.org
Wed Nov 30 22:25:11 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 36654d6d393cb8c8a545835184a96be4ae0c885d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=36654d6d393cb8c8a545835184a96be4ae0c885d

Author: Darren Hart <dvhart at linux.intel.com>
Date:   Wed Nov 23 23:17:16 2011 +0000

grub: Use COMPATIBLE_HOST

Drop the anonymous python block in favor of the much simpler
COMPATIBLE_HOST mechanism.

Signed-off-by: Darren Hart <dvhart at linux.intel.com>
CC: Tom Zanussi <tom.zanussi at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-bsp/grub/grub_1.99.bb |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/meta/recipes-bsp/grub/grub_1.99.bb b/meta/recipes-bsp/grub/grub_1.99.bb
index a077363..49c26f6 100644
--- a/meta/recipes-bsp/grub/grub_1.99.bb
+++ b/meta/recipes-bsp/grub/grub_1.99.bb
@@ -22,6 +22,8 @@ SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \
 SRC_URI[md5sum] = "ca9f2a2d571b57fc5c53212d1d22e2b5"
 SRC_URI[sha256sum] = "b91f420f2c51f6155e088e34ff99bea09cc1fb89585cf7c0179644e57abd28ff"
 
+COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)'
+
 inherit autotools
 inherit gettext
 
@@ -31,13 +33,6 @@ do_configure() {
     oe_runconf
 }
 
-python __anonymous () {
-    import re
-    host = d.getVar('HOST_SYS', 1)
-    if not re.match('x86.64.*-linux', host) and not re.match('i.86.*-linux', host):
-        raise bb.parse.SkipPackage("incompatible with host %s" % host)
-}
-
 do_install_append () {
     install -m 0755 ${WORKDIR}/40_custom ${D}${sysconfdir}/grub.d/40_custom
 }





More information about the Openembedded-commits mailing list