summaryrefslogtreecommitdiffstats
path: root/Makefile.rules.in
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-07-06 05:57:19 +0200
committerPatrick McHardy <kaber@trash.net>2010-07-06 05:57:19 +0200
commit3a3cd6215d49cb02841b2b20cf8fa9b91de3a831 (patch)
tree84cd5d8d10b5cbfa08138215e0ba840ff6d96fcd /Makefile.rules.in
parent969482e3144911c71a9cb73019e086cc8adec991 (diff)
build: fix endless recursion with SUBDIRS=...
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'Makefile.rules.in')
-rw-r--r--Makefile.rules.in2
1 files changed, 1 insertions, 1 deletions
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=""