diff options
-rw-r--r-- | packages/hostap/hostap-daemon_0.5.10.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/hostap/hostap-daemon_0.5.10.bb b/packages/hostap/hostap-daemon_0.5.10.bb index f75efc4a34..3fc1d8dc11 100644 --- a/packages/hostap/hostap-daemon_0.5.10.bb +++ b/packages/hostap/hostap-daemon_0.5.10.bb @@ -4,6 +4,7 @@ SECTION = "kernel/userland" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "openssl ${@base_contains("COMBINED_FEATURES", "pci", "madwifi-ng", "",d)}" +PR = "r1" #we introduce MY_ARCH to get 'armv5te' as arch instead of the misleading 'arm' on armv5te builds MY_ARCH := "${PACKAGE_ARCH}" @@ -23,7 +24,7 @@ INITSCRIPT_NAME=hostapd do_configure() { install -m 0644 ${WORKDIR}/defconfig ${S}/.config - if [ "x$HAS_PCI" == "x1" ] ; then + if [ "x$HAS_PCI" = "x1" ] ; then echo "CONFIG_DRIVER_MADWIFI=y" >> .config echo "CFLAGS += -I${STAGING_INCDIR}/madwifi-ng" >> .config fi |