From: Patrick McHardy Date: Tue, 6 Jul 2010 03:57:19 +0000 (+0200) Subject: build: fix endless recursion with SUBDIRS=... X-Git-Tag: v0.099~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a3cd6215d49cb02841b2b20cf8fa9b91de3a831;p=thirdparty%2Fnftables.git build: fix endless recursion with SUBDIRS=... Signed-off-by: Patrick McHardy --- diff --git a/Makefile.rules.in b/Makefile.rules.in index 3abd48c8..a93a26bd 100644 --- a/Makefile.rules.in +++ b/Makefile.rules.in @@ -86,4 +86,4 @@ install: all $(SUBDIRS) $(install_targets) .PHONY: $(SUBDIRS) $(SUBDIRS): @echo -e " SUBDIR\t$@/" - @$(MAKE) -s -f Makefile.rules $(MAKECMDGOALS) SUBDIR="$@/" + @$(MAKE) -s -f Makefile.rules $(MAKECMDGOALS) SUBDIR="$@/" SUBDIRS=""