diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-07-23 21:46:43 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-07-23 21:46:43 +0000 |
commit | af5161afa148615925991ce31c4104f0b4b7a409 (patch) | |
tree | 1f62e600a1dce514af2a8e958fb310438e95358b /Makefile | |
parent | e23d125883df3d24c021db87593e15c6a4039814 (diff) | |
download | bootsplash-af5161afa148615925991ce31c4104f0b4b7a409.tar bootsplash-af5161afa148615925991ce31c4104f0b4b7a409.tar.gz bootsplash-af5161afa148615925991ce31c4104f0b4b7a409.tar.bz2 bootsplash-af5161afa148615925991ce31c4104f0b4b7a409.tar.xz bootsplash-af5161afa148615925991ce31c4104f0b4b7a409.zip |
fail if build fails in a subdirectory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,10 +13,10 @@ SVNSOFT=svn+ssh://svn.mandriva.com/svn/soft/bootsplash/ SVNNAME=svn+ssh://svn.mandriva.com/svn/packages/cooker/bootsplash/current/ all: - @for i in $(SUBDIRS);do make -C $$i all;done + @for i in $(SUBDIRS);do make -C $$i all || exit 1 ;done install: - @for i in $(SUBDIRS);do make -C $$i install;done + @for i in $(SUBDIRS);do make -C $$i install || exit 1 ;done dis: clean rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar* |