diff options
author | dholland <dholland@pkgsrc.org> | 2012-09-15 21:25:27 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-09-15 21:25:27 +0000 |
commit | 1bb09f45e2e259eb8377cf5fb9c8c5553b777a00 (patch) | |
tree | 5fa94412e8f6b49c67981a341b471578232d8687 /parallel | |
parent | 2a8a0c20bc8583ca69ff6258304ecb8f77e292ec (diff) | |
download | pkgsrc-1bb09f45e2e259eb8377cf5fb9c8c5553b777a00.tar.gz |
Make build stop on error.
Diffstat (limited to 'parallel')
-rw-r--r-- | parallel/mpi-ch/distinfo | 3 | ||||
-rw-r--r-- | parallel/mpi-ch/patches/patch-src_mpe2_Makefile_in | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/parallel/mpi-ch/distinfo b/parallel/mpi-ch/distinfo index cf7a02078ee..1fe7f511065 100644 --- a/parallel/mpi-ch/distinfo +++ b/parallel/mpi-ch/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.18 2012/01/11 09:43:25 asau Exp $ +$NetBSD: distinfo,v 1.19 2012/09/15 21:25:27 dholland Exp $ SHA1 (mpich2-1.4.1p1.tar.gz) = 8dcc8888fb27232eb8f76c11cc890f1c3c483804 RMD160 (mpich2-1.4.1p1.tar.gz) = 1d355cc07b8675af77b1c255fd10696844447298 @@ -6,4 +6,5 @@ Size (mpich2-1.4.1p1.tar.gz) = 19502854 bytes SHA1 (patch-Makefile.in) = c7e8398952d3b60d1325661ef0055c72930c70f9 SHA1 (patch-aa) = f7d5fc3be6b2679ef0937615cc9c5b4229acb22a SHA1 (patch-ac) = b956a355ef381d759077288916c40e32b022f178 +SHA1 (patch-src_mpe2_Makefile_in) = a72b4edea6e59b0b4e59454e4d5910e01e689548 SHA1 (patch-src_pm_hydra_configure) = 9d42c909464fa24af7a079c03a75ae03aa3f8ee5 diff --git a/parallel/mpi-ch/patches/patch-src_mpe2_Makefile_in b/parallel/mpi-ch/patches/patch-src_mpe2_Makefile_in new file mode 100644 index 00000000000..32c903da264 --- /dev/null +++ b/parallel/mpi-ch/patches/patch-src_mpe2_Makefile_in @@ -0,0 +1,16 @@ +$NetBSD: patch-src_mpe2_Makefile_in,v 1.1 2012/09/15 21:25:27 dholland Exp $ + +Make build stop on error. + +--- src/mpe2/Makefile.in~ 2011-02-28 22:38:13.000000000 +0000 ++++ src/mpe2/Makefile.in +@@ -53,8 +53,7 @@ build_lib_bin: + @for pkg in $(PKGS) ; do \ + if [ -n "$$pkg" -a -s $$pkg/Makefile ] ; then \ + echo ; echo "**** Making $$pkg ...." ; \ +- ( cd $$pkg && $(MAKE) $(MAKEOPTS) ) ; \ +- sleep 1 ; \ ++ ( cd $$pkg && $(MAKE) $(MAKEOPTS) ) || exit 1; \ + fi ; \ + done + |