From owner-freebsd-questions@FreeBSD.ORG Tue Oct 5 14:24:12 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66E6516A4CE for ; Tue, 5 Oct 2004 14:24:12 +0000 (GMT) Received: from av6-2-sn2.hy.skanova.net (av6-2-sn2.hy.skanova.net [81.228.8.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44F0F43D5A for ; Tue, 5 Oct 2004 14:24:11 +0000 (GMT) (envelope-from ertr1013@student.uu.se) Received: by av6-2-sn2.hy.skanova.net (Postfix, from userid 502) id E45EE37E6C; Tue, 5 Oct 2004 16:24:09 +0200 (CEST) Received: from smtp2-2-sn2.hy.skanova.net (smtp2-2-sn2.hy.skanova.net [81.228.8.178]) by av6-2-sn2.hy.skanova.net (Postfix) with ESMTP id CF53D37E65 for ; Tue, 5 Oct 2004 16:24:09 +0200 (CEST) Received: from falcon.midgard.homeip.net (h201n1fls24o1048.bredband.comhem.se [212.181.162.201]) by smtp2-2-sn2.hy.skanova.net (Postfix) with SMTP id 7C9A837E47 for ; Tue, 5 Oct 2004 16:24:09 +0200 (CEST) Received: (qmail 17162 invoked by uid 1001); 5 Oct 2004 14:24:08 -0000 Date: Tue, 5 Oct 2004 16:24:08 +0200 From: Erik Trulsson To: Lowell Gilbert Message-ID: <20041005142408.GA17116@falcon.midgard.homeip.net> Mail-Followup-To: Lowell Gilbert , freebsd-questions@freebsd.org, Emanuel Strobl References: <6FC9F9894A9F8C49A722CF9F2132FC2201FFC245@ms05.mailstreet2003.net> <200410051045.15454.Emanuel.Strobl@gmx.net> <20041005100007.GC9642@happy-idiot-talk.infracaninophile.co.uk> <200410051237.56653.Emanuel.Strobl@gmx.net> <44is9p9v5b.fsf@be-well.ilk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44is9p9v5b.fsf@be-well.ilk.org> User-Agent: Mutt/1.5.6i cc: Emanuel Strobl cc: freebsd-questions@freebsd.org Subject: Re: Release Compiler options X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2004 14:24:12 -0000 On Tue, Oct 05, 2004 at 09:01:04AM -0400, Lowell Gilbert wrote: > Emanuel Strobl writes: > > > Ok, so share/examples/etc/make.conf is not evaluated like > > etc/defautls/make.conf was before? That's the point I guess. > > /etc/defaults/make.conf was *never* evaluated. That's *why* it was > moved out to the examples tree. /etc/defaults/make.conf was, and still is, evaluated in 4-stable. [1] However since all lines in that file are commented out it doesn't actually set any defaults (unlike e.g. /etc/defaults/rc.conf which actually sets default values for many variables.) However one has never (or at least not for a very long time) been supposed to modify /etc/defaults/make.conf, but any local modifications are supposed to go into /etc/make.conf which means that it made more sense to move /etc/defaults/make.conf to /usr/share/examples/etc/make.conf since it was just documentation of what variables one could set in /etc/make.conf. [1] From /usr/share/mk/sys.mk [...] .if exists(/etc/defaults/make.conf) .include .endif __MAKE_CONF?=/etc/make.conf .if exists(${__MAKE_CONF}) .include "${__MAKE_CONF}" .endif [...] -- Erik Trulsson ertr1013@student.uu.se