mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-20 00:58:25 +02:00
fix conditional depends in ipkg control files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13051 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7f8cad5eeb
commit
6290f02fd2
@ -25,7 +25,8 @@ endef
|
|||||||
dep_split=$(subst :,$(space),$(1))
|
dep_split=$(subst :,$(space),$(1))
|
||||||
dep_confvar=CONFIG_$(word 1,$(call dep_split,$(1)))
|
dep_confvar=CONFIG_$(word 1,$(call dep_split,$(1)))
|
||||||
dep_val=$(word 2,$(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)))
|
strip_deps=$(strip $(subst +,,$(filter-out @%,$(1))))
|
||||||
|
filter_deps=$(foreach dep,$(call strip_deps,$(1)),$(if $(findstring :,$(dep)),$(if $($(call dep_confvar,$(dep))),$(call dep_val,$(dep))),$(dep)))
|
||||||
|
|
||||||
ifeq ($(DUMP),)
|
ifeq ($(DUMP),)
|
||||||
define BuildTarget/ipkg
|
define BuildTarget/ipkg
|
||||||
@ -47,7 +48,7 @@ ifeq ($(DUMP),)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
IDEPEND_$(1):=$$(call filter_deps,$$(strip $$(DEPENDS)))
|
IDEPEND_$(1):=$$(call filter_deps,$$(DEPENDS))
|
||||||
|
|
||||||
$(eval $(call BuildIPKGVariable,$(1),conffiles))
|
$(eval $(call BuildIPKGVariable,$(1),conffiles))
|
||||||
$(eval $(call BuildIPKGVariable,$(1),preinst))
|
$(eval $(call BuildIPKGVariable,$(1),preinst))
|
||||||
|
Loading…
Reference in New Issue
Block a user