From ea07b4d8c472f696c3da79071e49777a919ad230 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 27 Oct 2008 17:25:11 +0000 Subject: [PATCH] merge r13051 to 8.09 SVN-Revision: 13052 --- include/package-ipkg.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index de9798413d..c5d4916c2c 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -25,7 +25,8 @@ 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))) +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),) define BuildTarget/ipkg @@ -47,7 +48,7 @@ ifeq ($(DUMP),) endif endif - IDEPEND_$(1):=$$(call filter_deps,$$(strip $$(DEPENDS))) + IDEPEND_$(1):=$$(call filter_deps,$$(DEPENDS)) $(eval $(call BuildIPKGVariable,$(1),conffiles)) $(eval $(call BuildIPKGVariable,$(1),preinst)) -- 2.30.2