diff options
author | Koen Kooi <koen@openembedded.org> | 2007-10-06 19:18:28 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-10-06 19:18:28 +0000 |
commit | 8acf0bf20e7d1f4fb89de4df260fb7b4c83cb9d5 (patch) | |
tree | f2bc4a8507c48293262dc28a18cb1b0a7ccee990 | |
parent | fe3f6d35780691438cdd9b9d9c2ed57f6be91b15 (diff) | |
parent | adecb539d2fdcca398f31e7220dc15d13633994d (diff) |
merge of '1071338fe9143d91f11215f627150ab1adc3a923'
and '2cffc57d52392fbeabd7156350a781b1a803493e'
-rw-r--r-- | packages/hal/hal_0.5.9.bb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/packages/hal/hal_0.5.9.bb b/packages/hal/hal_0.5.9.bb index 72d5dc4e2d..03c45623a4 100644 --- a/packages/hal/hal_0.5.9.bb +++ b/packages/hal/hal_0.5.9.bb @@ -5,28 +5,28 @@ RDEPENDS += "udev hal-info" #RDEPENDS_hal-device-manager = "python hal python-pygnome" RRECOMMENDS = "udev-utils" -PR = "r2" +PR = "r3" SRC_URI += "file://99_hal \ file://20hal \ " +# machines with pci and acpi get a machine dependant hal EXTRA_OECONF = "--with-hwdata=${datadir}/hwdata \ --with-expat=${STAGING_LIBDIR}/.. \ --with-dbus-sys=${sysconfdir}/dbus-1/system.d \ --with-hotplug=${sysconfdir}/hotplug.d \ --disable-docbook-docs \ --disable-policy-kit \ - --disable-acpi --disable-pmu --disable-pci \ - --disable-pci-ids --disable-pnp-ids \ - " - -# work around autoconf >2.59 deps... -do_configure() { - gnu-configize - libtoolize --force - oe_runconf -} + --disable-pmu \ + --disable-pnp-ids \ + ${@base_contains('COMBINED_FEATURES', 'pci', '--enable-pci --enable-pci-ids', '--disable-pci --disable-pci-ids',d)} \ + ${@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)}" do_install_append() { install -d ${D}/etc/default/volatiles |