diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-09-02 11:54:30 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-02 18:13:36 +0100 |
commit | 74646a2b2d7d452dfe95b08940389a686e8addcb (patch) | |
tree | fea689026c59b7362567ed1c3d5a43e8645c1584 /meta/recipes-support | |
parent | 4bc94f1896aad7f540ac520cd69edf3e96029319 (diff) | |
download | openembedded-core-74646a2b2d7d452dfe95b08940389a686e8addcb.tar.gz openembedded-core-74646a2b2d7d452dfe95b08940389a686e8addcb.tar.bz2 openembedded-core-74646a2b2d7d452dfe95b08940389a686e8addcb.zip |
hal: Remove build time dependency of virtual/kernel
hal has runtime dependency on kernel, but not build time. Remove it from
"DEPENDS" list.
Also fix a wrong PACKAGE_ARCH setting when building multilib lib32-hal,
because ":=" will be extended immediately which is not the right value.
Using TUNE_PKGARCH instead.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/hal/hal.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-support/hal/hal.inc b/meta/recipes-support/hal/hal.inc index d276d467b1..b00455b6ba 100644 --- a/meta/recipes-support/hal/hal.inc +++ b/meta/recipes-support/hal/hal.inc @@ -6,7 +6,7 @@ SECTION = "unknown" LICENSE = "GPLv2+ | AFL" LIC_FILES_CHKSUM = "file://COPYING;md5=5b5ffd59fbb7c2fff6de76c94177af31" -DEPENDS = "virtual/kernel dbus-glib udev util-linux intltool intltool-native expat libusb gperf-native" +DEPENDS = "dbus-glib udev util-linux intltool intltool-native expat libusb gperf-native" RDEPENDS_${PN} += "udev hal-info" SRC_URI = "http://hal.freedesktop.org/releases/hal-${PV}.tar.gz \ @@ -30,9 +30,8 @@ EXTRA_OECONF = "--with-hwdata=${datadir}/hwdata \ ${@base_contains('MACHINE_FEATURES', 'acpi', '--enable-acpi', '--disable-acpi',d)} \ " -MY_ARCH := "${PACKAGE_ARCH}" -PACKAGE_ARCH = "${@base_contains('MACHINE_FEATURES', 'acpi', '${MACHINE_ARCH}', '${MY_ARCH}',d)}" -PACKAGE_ARCH = "${@base_contains('MACHINE_FEATURES', 'pci', '${MACHINE_ARCH}', '${MY_ARCH}',d)}" +PACKAGE_ARCH = "${@base_contains('MACHINE_FEATURES', 'acpi', '${MACHINE_ARCH}', '${TUNE_PKGARCH}',d)}" +PACKAGE_ARCH = "${@base_contains('MACHINE_FEATURES', 'pci', '${MACHINE_ARCH}', '${TUNE_PKGARCH}',d)}" do_install_append() { install -d ${D}/etc/dbus-1/event.d |