diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-05-17 20:13:29 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-05-17 20:13:29 +0000 |
commit | 69d2637ec624cf5cc6978c8c66f697d45f348433 (patch) | |
tree | e1a77214f600d24d3812a2939653fe27d4cd9de1 | |
parent | 251abc41cd284a51095269ea93e4151183a3475d (diff) | |
download | upstream-69d2637ec624cf5cc6978c8c66f697d45f348433.tar.gz upstream-69d2637ec624cf5cc6978c8c66f697d45f348433.tar.bz2 upstream-69d2637ec624cf5cc6978c8c66f697d45f348433.zip |
ifndef is not supported inside make variable expansion
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11165 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/madwifi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/madwifi/Makefile b/package/madwifi/Makefile index ef83702a8a..09995e0c41 100644 --- a/package/madwifi/Makefile +++ b/package/madwifi/Makefile @@ -205,7 +205,7 @@ MAKE_ARGS:= \ LDOPTS="--no-warn-mismatch " \ ATH_RATE="ath_rate/$(RATE_CONTROL)" \ WARNINGS="-Wno-unused" \ - $(ifndef CONFIG_MADWIFI_DEBUG,DEBUG="") \ + $(if $(CONFIG_MADWIFI_DEBUG),,DEBUG="") \ DOMULTI=1 MAKE_VARS:= \ |