diff options
author | dmcmahill <dmcmahill> | 2001-03-19 11:25:39 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-03-19 11:25:39 +0000 |
commit | 549e7b6f1d869a43a2f135607765b15aee9e0539 (patch) | |
tree | 231912bf99df3e7a22581d6b801548a57431b123 /mk/bulk/build.conf-example | |
parent | 2a7b4195f805d5ea1a29ab7433f5667573e48730 (diff) | |
download | pkgsrc-549e7b6f1d869a43a2f135607765b15aee9e0539.tar.gz |
-add support for a BULK_PREREQ make variable. BULK_PREREQ contains a list
of packages which must stay installed during the build, but are not pulled
in by the DEPENDS for each package. Currently, BULK_PREREQ will always include
pkgtools/digest. At this time, the primary use will be to add
BULK_PREREQ+=pkgtools/xpkgwedge
in /etc/mk.conf to do an xpkgwedge'd bulk build. It is up to the user to make
sure that the list of packages in BULK_PREREQ is a flattened list (ie all the
DEPENDS are listed too). Again, at this time, xpkgwedge is really the only
package that should be added to the list.
-add an ADMINSIG build.conf variable. This is the signature at the end of the
email report. Maybe now I'll quit forwarding reports signed as "-Hubert".
-while here, eliminate grep|awk lines and `grep >/dev/null` replacing them
with pure awk and grep -q.
Diffstat (limited to 'mk/bulk/build.conf-example')
-rw-r--r-- | mk/bulk/build.conf-example | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/bulk/build.conf-example b/mk/bulk/build.conf-example index ca5eded0d88..6296efae3a4 100644 --- a/mk/bulk/build.conf-example +++ b/mk/bulk/build.conf-example @@ -1,5 +1,5 @@ # build.conf -# $NetBSD: build.conf-example,v 1.7 2000/12/30 14:53:28 dmcmahill Exp $ +# $NetBSD: build.conf-example,v 1.8 2001/03/19 11:25:39 dmcmahill Exp $ # # config file in /bin/sh syntax for {,pre,post}-build # @@ -14,6 +14,9 @@ FTPHOST="ftp://ftp.machi.ne" # host for broken.html # Where build will mail the report ADMIN="you@some.whe.re" +# Who the report is signed by +ADMINSIG="-Your Name" + # The OS release this bulk build is happening on osrev=`uname -r` |