diff options
author | joerg <joerg@pkgsrc.org> | 2007-05-16 16:48:12 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-05-16 16:48:12 +0000 |
commit | c8429a5376f87959e868583dd27fafc45744685b (patch) | |
tree | 02c8c7ff85d70dd358c67062eb3aaf019d5588af /mk/pbulk | |
parent | aa95679e4fb8452fcff7878a1e889120ad3bc38b (diff) | |
download | pkgsrc-c8429a5376f87959e868583dd27fafc45744685b.tar.gz |
set -e to abort on errors from the sub-makes.
Diffstat (limited to 'mk/pbulk')
-rw-r--r-- | mk/pbulk/pbulk-index.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/pbulk/pbulk-index.mk b/mk/pbulk/pbulk-index.mk index bc82591159c..e128f13d09a 100644 --- a/mk/pbulk/pbulk-index.mk +++ b/mk/pbulk/pbulk-index.mk @@ -1,4 +1,4 @@ -# $NetBSD: pbulk-index.mk,v 1.1 2007/05/09 23:33:52 joerg Exp $ +# $NetBSD: pbulk-index.mk,v 1.2 2007/05/16 16:48:12 joerg Exp $ # This Makefile fragment is included by bsd.pkg.mk and provides all # variables and targets related to the parallel bulk build @@ -73,7 +73,7 @@ pbulk-index: pbulk-index-item # A second ODE for loop is used to close the shell for loops. # pbulk-index: - @${_PBULK_MULTI_NEEDED:@._t.@\ + @set -e; ${_PBULK_MULTI_NEEDED:@._t.@\ for ${._t.} in ${_PBULK_SORTED_LIST.${._t.}}; do \ _PBULK_MULTI_VALUE_${._t.}=$$${._t.}; \ export _PBULK_MULTI_VALUE_${._t.}; \ |