diff options
author | Rod Whitby <rod@whitby.id.au> | 2008-05-10 13:30:48 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2008-05-10 13:30:48 +0000 |
commit | ef50b2aa16aed7e5d0c368c62c6b9d6a305ecc69 (patch) | |
tree | 19488ffdb9f0ea529d4c869a352d2c0b6063a78a /packages/hostap/hostap-daemon_0.5.10.bb | |
parent | 5dfa872d86e68f511e58280cc7f88377b56124d2 (diff) |
hostap-daemon: Remove bashism
Diffstat (limited to 'packages/hostap/hostap-daemon_0.5.10.bb')
-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 |