From: Todd C. Miller Date: Tue, 4 May 2010 19:13:40 +0000 (-0400) Subject: Stop if make in a subdir fails X-Git-Tag: SUDO_1_8_0~667 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b60b28abd119110bbb3c1d6d298ff2bef5c5861c;p=sudo Stop if make in a subdir fails --- 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 > $@