From 09754a11aaf3d032df0b2fdd10148fe8cf61b55a Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 2 Apr 2013 12:40:53 -0400 Subject: [PATCH] The first (all) target must be by itself or some makes will choose the run the entire target list. --- Makefile.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index d62c5557e..ed9680330 100644 --- a/Makefile.in +++ b/Makefile.in @@ -78,7 +78,13 @@ XGETTEXT_OPTS = -F -k_ -kN_ --copyright-holder="Todd C. Miller" \ --flag easprintf:3:c-format --flag lbuf_append:2:c-format \ --flag lbuf_append_quoted:3:c-format --foreign-user -all check pre-install: config.status +all: config.status + for d in $(SUBDIRS); \ + do (cd $$d && exec $(MAKE) $@) && continue; \ + exit $$?; \ + done + +check pre-install: config.status for d in $(SUBDIRS); \ do (cd $$d && exec $(MAKE) $@) && continue; \ exit $$?; \