summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-01-24 01:37:20 +0000
committerrillig <rillig@pkgsrc.org>2007-01-24 01:37:20 +0000
commit2d13644250a67588e13a061adb6e44e776c6d13e (patch)
tree09915887aa9579fe99216b24db73fd268ce6009c /mk
parent8f5b8a57321fc5dd864037eda4b7d046be0369b5 (diff)
downloadpkgsrc-2d13644250a67588e13a061adb6e44e776c6d13e.tar.gz
Quick fix: The main code of the bulk build cannot be run in the shell's
"set -e" mode, since it would fill up the temporary directory. Reverted that change.
Diffstat (limited to 'mk')
-rw-r--r--mk/bulk/bsd.bulk-pkg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/bsd.bulk-pkg.mk b/mk/bulk/bsd.bulk-pkg.mk
index 2faccd062bc..1681df2b5a7 100644
--- a/mk/bulk/bsd.bulk-pkg.mk
+++ b/mk/bulk/bsd.bulk-pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.bulk-pkg.mk,v 1.133 2007/01/22 12:24:20 rillig Exp $
+# $NetBSD: bsd.bulk-pkg.mk,v 1.134 2007/01/24 01:37:20 rillig Exp $
#
# Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@NetBSD.org>
@@ -356,7 +356,7 @@ bulk-package:
${ECHO} "###"; \
${ECHO} ""; \
} | ${TEE} -a ${_BUILDLOG}
- ${RUN} \
+ ${RUN} set +e; \
uptodate=`${RECURSIVE_MAKE} ${MAKEFLAGS} bulk-check-uptodate REF=${PKGFILE}` ; \
if [ $$uptodate = 1 ]; then \
{ ${BULK_MSG} "Nothing to be done for ${PKGNAME}." ; \