diff options
author | seb <seb@pkgsrc.org> | 2005-11-12 11:10:08 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2005-11-12 11:10:08 +0000 |
commit | c97aaac223f78393ac94be6b7c6d458e8d44d70d (patch) | |
tree | 20d869034c669ab9baa010e484d557789022f04c | |
parent | 731c4a68786468f2eac22e216ebf4f2adda52976 (diff) | |
download | pkgsrc-c97aaac223f78393ac94be6b7c6d458e8d44d70d.tar.gz |
Please, really only export MAKECONF if it is set.
-rw-r--r-- | mk/bulk/post-build-conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mk/bulk/post-build-conf b/mk/bulk/post-build-conf index c2053e9e7bc..ae7c4ee750c 100644 --- a/mk/bulk/post-build-conf +++ b/mk/bulk/post-build-conf @@ -1,4 +1,4 @@ -# $NetBSD: post-build-conf,v 1.6 2005/11/10 08:28:49 rillig Exp $ +# $NetBSD: post-build-conf,v 1.7 2005/11/12 11:10:08 seb Exp $ # # This file is included after the build.conf file by the "build" and @@ -47,12 +47,15 @@ show_config_vars() { # usage: export_config_vars export_config_vars() { - export osrev arch BULK_BUILD_CONF USR_PKGSRC MAKECONF + export osrev arch BULK_BUILD_CONF USR_PKGSRC export CVS_USER CVS_FLAGS export PRUNEDISTFILES ftp_proxy http_proxy export PKGLIST NICE_LEVEL ADMIN ADMINSIG export UPDATE_VULNERABILITY_LIST PRUNEPACKAGES MKSUMS SIGN_AS export RSYNC_DST RSYNC_OPTS FTPHOST FTP + case ${MAKECONF+set} in + "set") export MAKECONF;; + esac } # usage: pbc_die error-message |