diff options
author | Patrick McHardy <kaber@trash.net> | 2010-07-06 05:57:19 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-07-06 05:57:19 +0200 |
commit | 3a3cd6215d49cb02841b2b20cf8fa9b91de3a831 (patch) | |
tree | 84cd5d8d10b5cbfa08138215e0ba840ff6d96fcd | |
parent | 969482e3144911c71a9cb73019e086cc8adec991 (diff) |
build: fix endless recursion with SUBDIRS=...
Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r-- | Makefile.rules.in | 2 |
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="" |