diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-08-27 21:34:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-08-27 21:34:01 +0000 |
commit | 38b96e6b68453f94c8354fd5b9d3c88b32d161b0 (patch) | |
tree | 22edcb232b043e2748aa4da1caab3da83268e3cd /include | |
parent | e44384cae9c51a6007a7d1adbff1f397e58c21b5 (diff) | |
download | upstream-38b96e6b68453f94c8354fd5b9d3c88b32d161b0.tar.gz upstream-38b96e6b68453f94c8354fd5b9d3c88b32d161b0.tar.bz2 upstream-38b96e6b68453f94c8354fd5b9d3c88b32d161b0.zip |
fix kconfig for packages that only define =y, =m or =n rules
SVN-Revision: 12414
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel.mk b/include/kernel.mk index 7d986e4597..8393d2f420 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -126,7 +126,7 @@ $(call KernelPackage/$(1)/config) endef endif - ifneq ($(if $(KCONFIG),$(filter m,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),.),) + ifneq ($(if $(filter-out %=y %=n %=m,$(KCONFIG)),$(filter m,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),.),) ifneq ($(strip $(FILES)),) define Package/kmod-$(1)/install mkdir -p $$(1)/lib/modules/$(LINUX_VERSION) |