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 | 4f0fd2ef69d11c8b810d640f9768188a3b761858 (patch) | |
tree | 20d869034c669ab9baa010e484d557789022f04c /mk | |
parent | a94cc52d8c06970bea2c6de7bcfe4413c20d70cb (diff) | |
download | pkgsrc-4f0fd2ef69d11c8b810d640f9768188a3b761858.tar.gz |
Please, really only export MAKECONF if it is set.
Diffstat (limited to 'mk')
-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 |