pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install/files Exit if there's a problem b...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/81076fb9b428
branches:  trunk
changeset: 460936:81076fb9b428
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Mon Sep 08 01:36:45 2003 +0000

description:
Exit if there's a problem building in one of the subdirectories instead of
pretending nothing is wrong.

diffstat:

 pkgtools/pkg_install/files/Makefile.in |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r af73ddcc1cd8 -r 81076fb9b428 pkgtools/pkg_install/files/Makefile.in
--- a/pkgtools/pkg_install/files/Makefile.in    Mon Sep 08 01:13:02 2003 +0000
+++ b/pkgtools/pkg_install/files/Makefile.in    Mon Sep 08 01:36:45 2003 +0000
@@ -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 @@
 
 all install clean:
        @for dir in $(SUBDIRS); do \
-               ( cd $$dir && $(MAKE) $@ ); \
+               ( cd $$dir && $(MAKE) $@ ) || exit 1; \
        done
 
 distclean: clean



Home | Main Index | Thread Index | Old Index