diff options
author | sketch <sketch> | 2004-08-06 10:41:51 +0000 |
---|---|---|
committer | sketch <sketch> | 2004-08-06 10:41:51 +0000 |
commit | 3cff16ecad122fbf93e998446a10246e72cc7577 (patch) | |
tree | 8736948ecf6920017316cb8d45697585dcb19411 /mk | |
parent | d265836fec4e7de008d7a478e78cbadb53ae10be (diff) | |
download | pkgsrc-3cff16ecad122fbf93e998446a10246e72cc7577.tar.gz |
Unset CDPATH variable in the user environment which prints the cwd to stdout
when changing directory, breaking the resulting tsort from the printindex
script output.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/bulk/build b/mk/bulk/build index 149f9900069..64994a6c240 100644 --- a/mk/bulk/build +++ b/mk/bulk/build @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: build,v 1.41 2004/07/22 14:26:42 agc Exp $ +# $NetBSD: build,v 1.42 2004/08/06 10:41:51 sketch Exp $ # # Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@NetBSD.org> @@ -161,6 +161,8 @@ if [ "$ftp_proxy" != "" ]; then fi echo "" +unset CDPATH # ensure cd does not print new cwd to stdout, which + # confuses the printindex script. unset DISPLAY # allow sane failure for gimp, xlispstat # Check that the pkg_tools are up to date |