diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2002-06-29 03:33:34 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2002-06-29 03:33:34 +0000 |
commit | 187edbfd07c9a07a4979e80e3aa47e53bc5418f7 (patch) | |
tree | 63e392c16ccdcfcc6f3e22f5cfadf6031f91eb5c /mk/bulk/build | |
parent | ee74f122393204b55667e91b0de48ea8a76f2944 (diff) | |
download | pkgsrc-187edbfd07c9a07a4979e80e3aa47e53bc5418f7.tar.gz |
don't hard code the start time stamp file as .start.${arch} but allow
OBJMACHINE and OBJHOSTNAME to work. Also don't hardcode /usr/pkg and
/usr/X11R6 for LOCALBASE and X11BASE. Finally, fix a few typos in messages
while here.
Diffstat (limited to 'mk/bulk/build')
-rw-r--r-- | mk/bulk/build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/bulk/build b/mk/bulk/build index b374d79d7fa..2c6172fa3ad 100644 --- a/mk/bulk/build +++ b/mk/bulk/build @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: build,v 1.20 2001/12/17 02:32:23 dmcmahill Exp $ +# $NetBSD: build,v 1.21 2002/06/29 03:33:34 dmcmahill Exp $ # # Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@netbsd.org> @@ -85,6 +85,7 @@ if [ -d pkgtools/pkglint ]; then ORDERFILE=`make show-var VARNAME=ORDERFILE` || fail=yes BROKENFILE=`make show-var VARNAME=BROKENFILE` || fail=yes BUILDLOG=`make show-var VARNAME=BUILDLOG` || fail=yes + STARTFILE=`make show-var VARNAME=STARTFILE` || fail=yes else echo "The pkgtools/pkglint directory does not exist. Please update" echo "your pkgsrc tree in ${USR_PKGSRC}" @@ -101,6 +102,7 @@ echo "INDEXFILE = $INDEXFILE" echo "ORDERFILE = $ORDERFILE" echo "BROKENFILE = $BROKENFILE" echo "BUILDLOG = $BUILDLOG" +echo "STARTFILE = $STARTFILE" echo "----------------------------------" # make sure we have values for these very important @@ -113,6 +115,7 @@ if [ $fail = "yes" -o \ -z "$ORDERFILE" -o \ -z "$BROKENFILE" -o \ -z "$BUILDLOG" \ + -z "$STARTFILE" \ ]; then echo "ERROR: build failed to extract certain key variables." echo " please examine the above list and correct the" |