diff options
author | rillig <rillig> | 2007-02-22 23:29:02 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-02-22 23:29:02 +0000 |
commit | 51a9ef6670ab3619bb389a97c7f61c1227bea51a (patch) | |
tree | 85d1c2d8af7c330b882b856fd0d042dfe49c44c4 | |
parent | fc904c3b654c49ec1f8b563c647f9a735a5e3f8b (diff) | |
download | pkgsrc-51a9ef6670ab3619bb389a97c7f61c1227bea51a.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.
-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 |