2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 18:08:23 +00:00

Stop if make in a subdir fails

This commit is contained in:
Todd C. Miller 2010-05-04 15:13:40 -04:00
parent e3f561668f
commit b60b28abd1

View File

@ -25,7 +25,7 @@ SUBDIRS = compat src plugins/sample plugins/sudoers doc
VERSION = @PACKAGE_VERSION@ VERSION = @PACKAGE_VERSION@
all install: config.status all install: config.status
for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@); done for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@) || break; done
ChangeLog: ChangeLog:
hg log --style=changelog -b default > $@ hg log --style=changelog -b default > $@