diff options
author | rillig <rillig@pkgsrc.org> | 2007-02-22 23:29:02 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-02-22 23:29:02 +0000 |
commit | 860cfa817b475318d512010a1eba5379307e4105 (patch) | |
tree | 85d1c2d8af7c330b882b856fd0d042dfe49c44c4 /bootstrap | |
parent | 1e1aae7138f8bd5891fd94aa77e6b4a39693be48 (diff) | |
download | pkgsrc-860cfa817b475318d512010a1eba5379307e4105.tar.gz |
In the bootstrap script, MAKECONF must be overridden, so that the
settings from there don't influence the bootstrap process.
Fixes PR 33188.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 20de6f1fa88..6fe8d4bfad4 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.90 2007/01/26 15:48:42 rillig Exp $ +# $NetBSD: bootstrap,v 1.91 2007/02/22 23:29:02 rillig Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -42,6 +42,11 @@ BOOTSTRAP_VERSION=20060721 +# Don't let the bootstrap program get confused by a pre-existing mk.conf +# file. +MAKECONF=/dev/null +export MAKECONF + ignorecasecheck=no ignoreusercheck=no |