diff options
author | jlam <jlam@pkgsrc.org> | 2003-09-08 01:36:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-09-08 01:36:45 +0000 |
commit | 81a729e26633e6e016e2409bf0dd453d493c8985 (patch) | |
tree | e576925a980307a8c8186b9271545853fd6abee5 /pkgtools/pkg_install | |
parent | fb44146d81697ed83b8bb0d457fdff20df26f784 (diff) | |
download | pkgsrc-81a729e26633e6e016e2409bf0dd453d493c8985.tar.gz |
Exit if there's a problem building in one of the subdirectories instead of
pretending nothing is wrong.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/files/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/Makefile.in b/pkgtools/pkg_install/files/Makefile.in index 2f44c0bf3b9..e2da1e94354 100644 --- a/pkgtools/pkg_install/files/Makefile.in +++ b/pkgtools/pkg_install/files/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.2 2003/09/01 16:27:09 jlam Exp $ +# $NetBSD: Makefile.in,v 1.3 2003/09/08 01:36:45 jlam Exp $ SUBDIRS= lib add admin create delete info view @@ -6,7 +6,7 @@ SUBDIRS= lib add admin create delete info view all install clean: @for dir in $(SUBDIRS); do \ - ( cd $$dir && $(MAKE) $@ ); \ + ( cd $$dir && $(MAKE) $@ ) || exit 1; \ done distclean: clean |