From: Felix Fietkau Date: Fri, 3 Oct 2008 14:40:02 +0000 (+0000) Subject: merge r12836 to 8.09 X-Git-Tag: 8.09_rc1~52 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5f1ffb8271f980fef374e1754f7ecfe4ea63456b;p=openwrt%2Fsvn-archive%2Fopenwrt.git merge r12836 to 8.09 SVN-Revision: 12837 --- diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 16378a0f0e..de9798413d 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -22,6 +22,11 @@ define BuildIPKGVariable $(1)_COMMANDS += var2file "$(call shvar,Package/$(1)/$(2))" $(2); endef +dep_split=$(subst :,$(space),$(1)) +dep_confvar=CONFIG_$(word 1,$(call dep_split,$(1))) +dep_val=$(word 2,$(call dep_split,$(1))) +filter_deps=$(foreach dep,$(1),$(if $(findstring :,$(dep)),$(if $($(call dep_confvar,$(dep))),$(call dep_val,$(dep))),$(dep))) + ifeq ($(DUMP),) define BuildTarget/ipkg IPKG_$(1):=$(PACKAGE_DIR)/$(1)_$(VERSION)_$(PKGARCH).ipk @@ -42,7 +47,7 @@ ifeq ($(DUMP),) endif endif - IDEPEND_$(1):=$$(strip $$(DEPENDS)) + IDEPEND_$(1):=$$(call filter_deps,$$(strip $$(DEPENDS))) $(eval $(call BuildIPKGVariable,$(1),conffiles)) $(eval $(call BuildIPKGVariable,$(1),preinst))