From owner-svn-src-user@FreeBSD.ORG Mon Dec 2 14:51:06 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2827DA9B; Mon, 2 Dec 2013 14:51:06 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EEF951A17; Mon, 2 Dec 2013 14:51:05 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id A226F1A8B1; Mon, 2 Dec 2013 14:51:04 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us A226F1A8B1 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Mon, 2 Dec 2013 09:51:03 -0500 From: Glen Barber To: Hiroki Sato Subject: Re: svn commit: r258848 - user/hrs/releng/release Message-ID: <20131202145103.GG1839@glenbarber.us> References: <201312021440.rB2EeQa6012210@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="OFj+1YLvsEfSXdCH" Content-Disposition: inline In-Reply-To: <201312021440.rB2EeQa6012210@svn.freebsd.org> X-Operating-System: FreeBSD 11.0-CURRENT amd64 User-Agent: Mutt/1.5.22 (2013-10-16) Cc: src-committers@freebsd.org, svn-src-user@freebsd.org X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Dec 2013 14:51:06 -0000 --OFj+1YLvsEfSXdCH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 02, 2013 at 02:40:26PM +0000, Hiroki Sato wrote: > Author: hrs > Date: Mon Dec 2 14:40:26 2013 > New Revision: 258848 > URL: http://svnweb.freebsd.org/changeset/base/258848 >=20 > Log: > Improve robustness and consistency, and remove redundant lines with no > major functional change: > [...] > +if [ $($ID -u) -ne 0 ]; then > + echo 1>&2 "$0: Needs to be run as root." > + exit 1 > +fi > # The directory within which the release will be built. > -CHROOTDIR=3D"/scratch" > +: ${CHROOTDIR:=3D/scratch} > +: ${CHROOT_CMD:=3Dchroot $CHROOTDIR} > +: ${DESTDIR=3D:/R/} > +: ${MAKEOBJDIRPREFIX:=3D/usr/obj} > =20 Please do not merge these changes to head/. It was intentional that environment was not honored, as everything should be set in the configuration file. It is possible to use the environment in the configuration file, such as: ---- release.conf ---- : ${_DESTDIR=3D:/R/} DESTDIR=3D${_DESTDIR} ---- release.conf ---- Glen --OFj+1YLvsEfSXdCH Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJSnJ5XAAoJELls3eqvi17QvskQAKLDKZEnISVFUp/uzdZqQI0v WF1GVblsc+l4q1aNAEFarJp8RkZopKPpytBjt9RZHxkpuNcTlMlqhRm19rAbgH99 0wm2j018HAjEZr0Rk+/p1xyMn6pnLdH5vb0bZC9P/qA3qm7ueWOOEcee2fdA5q3O n16kBWWaZBjaQ9oZi8wTxbigYyms7o1t/Nkde8sjjwO3hWXENLKNbRmVC00PwGKz zwG/gie8ornERdFdNTDuDHxmpuNTdoJnjl7Aqmf5hPBAXG/FSyUC4v8Swm68bnWd w7lCmSMYc6yrHmvXve6kv+O1RlHz/aFj8To4BujpBV7WccwkfPg+UbmCQuxN1Qij nTMemkw8s7PYHXwVTCYuNAT7YD3LmobpZzhHoR1C85Q+/VBlTL8Jc2buM8WLSLor MuIvu27fO9HmDccCez/RhPvB9dsQyJEHgMvfJZlMwK9Y4o4/BE4hND9+5I2dGi7O bgFS/tEWkJ+jry8vdtg0VbbnOu+7vcr39OMOcVhPP2KN6d6PTfR1zF+71765KXcj 3RwKbhUBZZzIgFBg9bqRkIiahrvMg6/5GOOJFWzDS63Li7waFZfGUZfRFEIRD44x J461CPPfzLVRguznqiFNP2AzMhzhJ5H/bTBsw3zUeN42VGI6CA+AWnHT7Qbc1he6 TctFI6w7jDUNHjhcRrjr =tDnl -----END PGP SIGNATURE----- --OFj+1YLvsEfSXdCH--