Subject: Re: mk.conf
To: Atul Pandit <atulpandit@hotmail.com>
From: Frederick Bruckman <fredb@immanent.net>
List: netbsd-help
Date: 12/21/2001 15:01:54
On Fri, 21 Dec 2001, Atul Pandit wrote:

>     What I need to do to make sure that my mk.conf is used instead of
> /etc/mk.conf by make enviornment?

	export MAKECONF=~/mk.conf # Bourne Shell's
or
	setenv MAKECONF ~/mk.conf # Csh

${MAKECONF} or "/etc/mk.conf" aren't strictly used by bsd "make", but by
"/usr/share/mk/bsd.own.mk" when it's included. This it why it's not
documented in make(1), though it does affect NetBSD "src", "xsrc", and
"pkgsrc".

Frederick