From d533cc53df835983fd40501e017be1b1fe2986a3 Mon Sep 17 00:00:00 2001 From: Anthony Merlino Date: Wed, 12 Sep 2018 11:52:10 -0600 Subject: [PATCH] tools/Config.mk: Fix an error in RWILDCARD implemenation --- tools/Config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Config.mk b/tools/Config.mk index 8b3e4762cd0..b059bbabe3d 100644 --- a/tools/Config.mk +++ b/tools/Config.mk @@ -292,7 +292,7 @@ endif # FILELIST = ${shell find -name } define RWILDCARD - $(foreach d,$(wildcard $1/*),$(call RWILDCARD,$d/)$(filter $(subst *,%,$2),$d)) + $(foreach d,$(wildcard $1/*),$(call RWILDCARD,$d,$2)$(filter $(subst *,%,$2),$d)) endef # CLEAN - Default clean target