diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-30 18:00:16 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-30 18:00:16 +0000 |
commit | 11eba3fcb724f50d1cc327112769acade7fdff4e (patch) | |
tree | fc01bb64c221f30e608240553620fd2ff565a489 /mk/bulk | |
parent | 8ad8797508922f70d00b5ce42cf230a1a80140a2 (diff) | |
download | pkgsrc-11eba3fcb724f50d1cc327112769acade7fdff4e.tar.gz |
- Ignore the return value of the "unset" command. This would terminate the
program if the program would be run in "set -e" mode.
Diffstat (limited to 'mk/bulk')
-rw-r--r-- | mk/bulk/build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bulk/build b/mk/bulk/build index d48c3d59753..cae72a910c5 100644 --- a/mk/bulk/build +++ b/mk/bulk/build @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: build,v 1.89 2005/11/28 21:50:01 rillig Exp $ +# $NetBSD: build,v 1.90 2005/11/30 18:00:16 rillig Exp $ # # Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@NetBSD.org> @@ -201,9 +201,9 @@ export BATCH DEPENDS_TARGET # # Unset some environment variables that could disturbe the build. # -unset CDPATH # ensure cd does not print new cwd to stdout, which +unset CDPATH || true # ensure cd does not print new cwd to stdout, which # confuses the printindex script. -unset DISPLAY # allow sane failure for gimp, xlispstat +unset DISPLAY || true # allow sane failure for gimp, xlispstat # # It starts ... |