From b60b28abd119110bbb3c1d6d298ff2bef5c5861c Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 4 May 2010 15:13:40 -0400 Subject: [PATCH] Stop if make in a subdir fails --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index f149e9964..eb3b81b71 100644 --- a/Makefile.in +++ b/Makefile.in @@ -25,7 +25,7 @@ SUBDIRS = compat src plugins/sample plugins/sudoers doc VERSION = @PACKAGE_VERSION@ all install: config.status - for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@); done + for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@) || break; done ChangeLog: hg log --style=changelog -b default > $@ -- 2.40.0