1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 22:20:45 +03:00

avoid repeating the same dependency multiple times

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14738 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-03-03 14:54:19 +00:00
parent 1c0844a67a
commit b158be34cf

View File

@ -94,6 +94,12 @@ ifeq ($(DUMP)$(TARGET_BUILD),)
-include $(LINUX_DIR)/.config -include $(LINUX_DIR)/.config
endif endif
define KernelPackage/depends
$(STAMP_BUILT): $(LINUX_DIR)/.config
define KernelPackage/depends
endef
endef
define KernelPackage define KernelPackage
NAME:=$(1) NAME:=$(1)
$(eval $(call Package/Default)) $(eval $(call Package/Default))
@ -126,7 +132,7 @@ $(call KernelPackage/$(1)/config)
endef endef
endif endif
$(STAMP_BUILT): $(LINUX_DIR)/.config $(call KernelPackage/depends)
ifneq ($(if $(filter-out %=y %=n %=m,$(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)),) ifneq ($(strip $(FILES)),)