diff options
author | rillig <rillig> | 2007-03-06 10:57:11 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-03-06 10:57:11 +0000 |
commit | 5cad7bacadd4381de20a9d351110b3f94c7b75a5 (patch) | |
tree | 2821b6d30d64289b9f231b14ff51720fd4d8bf82 /mk/bulk | |
parent | 5ad4e6236a9df44a0631df9b5ba806a1e6a09273 (diff) | |
download | pkgsrc-5cad7bacadd4381de20a9d351110b3f94c7b75a5.tar.gz |
Removed the unused "arch" variable.
Diffstat (limited to 'mk/bulk')
-rw-r--r-- | mk/bulk/build.conf-example | 5 | ||||
-rw-r--r-- | mk/bulk/post-build-conf | 7 |
2 files changed, 4 insertions, 8 deletions
diff --git a/mk/bulk/build.conf-example b/mk/bulk/build.conf-example index 0a1c0c341e1..42c777bea5c 100644 --- a/mk/bulk/build.conf-example +++ b/mk/bulk/build.conf-example @@ -1,4 +1,4 @@ -# $NetBSD: build.conf-example,v 1.36 2006/06/02 22:01:46 dillo Exp $ +# $NetBSD: build.conf-example,v 1.37 2007/03/06 10:57:11 rillig Exp $ # # This is an example configuration file for pkgsrc bulk builds. # Actually it's a shell script that is sourced in by the pre-build, @@ -12,9 +12,6 @@ # The OS release this bulk build is happening on. osrev=`uname -r` -# The machine architecture this is happening on. -arch=`uname -m` - # Where our pkgsrc is located. USR_PKGSRC="/usr/pkgsrc" diff --git a/mk/bulk/post-build-conf b/mk/bulk/post-build-conf index e50bf973bc9..05578bfea6a 100644 --- a/mk/bulk/post-build-conf +++ b/mk/bulk/post-build-conf @@ -1,4 +1,4 @@ -# $NetBSD: post-build-conf,v 1.13 2007/01/30 07:11:19 wiz Exp $ +# $NetBSD: post-build-conf,v 1.14 2007/03/06 10:57:11 rillig Exp $ # # This file is included after the build.conf file by the "build" and @@ -33,7 +33,7 @@ pbc_section() { # usage: show_config_vars show_config_vars() { pbc_section "System information" \ - osrev arch BULK_BUILD_CONF USR_PKGSRC MAKECONF + osrev BULK_BUILD_CONF USR_PKGSRC MAKECONF pbc_section "Getting distfiles" \ PRUNEDISTFILES ftp_proxy http_proxy pbc_section "Building the packages" \ @@ -49,7 +49,7 @@ show_config_vars() { # usage: export_config_vars export_config_vars() { - export osrev arch BULK_BUILD_CONF USR_PKGSRC + export osrev BULK_BUILD_CONF USR_PKGSRC export PRUNEDISTFILES ftp_proxy http_proxy export PKGLIST NICE_LEVEL ADMIN ADMINSIG export UPDATE_VULNERABILITY_LIST PRUNEPACKAGES MKSUMS SIGN_AS @@ -164,7 +164,6 @@ check_config_vars() { # section "System information" pbc_checknonempty osrev - pbc_checknonempty arch pbc_checkexistingfile BULK_BUILD_CONF pbc_checkexistingdir USR_PKGSRC case ${MAKECONF+set} in |