]> code.ossystems Code Review - openembedded-core.git/commitdiff
packagegroup-core-lsb: Limit mips64 issues to qt4 packages only
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 29 Mar 2014 22:49:39 +0000 (22:49 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 30 Mar 2014 08:54:28 +0000 (09:54 +0100)
The COMPATIBLE_HOST setting was only there for mips64 issues. Move that
restriction to the qt4 packages themselves so the rest of the lsb images can
be built.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb

index 68070e4f02108414448f99d42a1bca46dbccdad7..914a7a9b7e02f5a783c6ca3c404f4b7ff3caa7d6 100644 (file)
@@ -7,8 +7,6 @@ DESCRIPTION = "Packages required to satisfy the Linux Standard Base (LSB) specif
 PR = "r10"
 LICENSE = "MIT"
 
-COMPATIBLE_HOST_mips64 = "mips64.*-linux-gnun32"
-
 inherit packagegroup
 
 PACKAGES = "\
@@ -203,23 +201,28 @@ def get_libqt3(d):
         bb.warn('a requirement for LSB')
     return ''
 
-SUMMARY_packagegroup-core-lsb-desktop = "LSB Desktop"
-DESCRIPTION_packagegroup-core-lsb-desktop = "Packages required to support libraries \
-    specified in the LSB Desktop specification"
-RDEPENDS_packagegroup-core-lsb-desktop = "\
+QT4PKGS = " \
     libqtcore4 \
     libqtgui4 \
     libqtsql4 \
     libqtsvg4 \
     libqtxml4 \
     libqtnetwork4 \
+    qt4-plugin-sqldriver-sqlite \
+    ${@base_contains("DISTRO_FEATURES", "opengl", "libqtopengl4", "", d)} \
+    "
+QT4PKGS_mips64 = ""
+
+SUMMARY_packagegroup-core-lsb-desktop = "LSB Desktop"
+DESCRIPTION_packagegroup-core-lsb-desktop = "Packages required to support libraries \
+    specified in the LSB Desktop specification"
+RDEPENDS_packagegroup-core-lsb-desktop = "\
     libxt \
     libxxf86vm \
     libdrm \
     libglu \
     libxi \
     libxtst \
-    qt4-plugin-sqldriver-sqlite \
     libx11-locale \
     xorg-minimal-fonts \
     gdk-pixbuf-loader-ico \
@@ -230,7 +233,7 @@ RDEPENDS_packagegroup-core-lsb-desktop = "\
     gtk+ \
     atk \
     libasound \
-    ${@base_contains("DISTRO_FEATURES", "opengl", "libqtopengl4", "", d)} \
+    ${QT4PKGS} \
     ${@get_libqt3(d)} \
 "