From owner-cvs-src@FreeBSD.ORG Wed Sep 28 12:51:12 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 796AD16A421 for ; Wed, 28 Sep 2005 12:51:12 +0000 (GMT) (envelope-from rpaulo@fnop.net) Received: from pluricanal.net (mail.pluricanal.net [83.144.129.196]) by mx1.FreeBSD.org (Postfix) with SMTP id 1831643D4C for ; Wed, 28 Sep 2005 12:51:08 +0000 (GMT) (envelope-from rpaulo@fnop.net) Received: (qmail 29346 invoked from network); 28 Sep 2005 13:18:48 -0000 Received: from unknown (HELO proton.internal.fnop.net) (83.144.140.111) by mail.pluricanal.net with SMTP; 28 Sep 2005 13:18:48 -0000 Received: by proton.internal.fnop.net (Postfix, from userid 1000) id 0933F2FD6; Wed, 28 Sep 2005 13:48:13 +0100 (WEST) Date: Wed, 28 Sep 2005 13:48:12 +0100 From: Rui Paulo To: Ceri Davies , Ken Smith , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20050928124812.GA17908@proton.internal.fnop.net> References: <200509281239.j8SCd0WM012320@repoman.freebsd.org> <20050928124614.GJ94010@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wac7ysb48OaltWcw" Content-Disposition: inline In-Reply-To: <20050928124614.GJ94010@submonkey.net> User-Agent: Mutt/1.5.10i Cc: Subject: Re: cvs commit: src/release Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Sep 2005 12:51:12 -0000 --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2005.09.28 13:46:14 +0100, Ceri Davies wrote: | > | @@ -654,8 +654,10 @@ release.6: | > | -czf ${RD}/dists/ports/ports.tgz -C /usr ports | > | @cp ${.CURDIR}/scripts/ports-install.sh ${RD}/dists/ports/install.sh | > | @(cd ${RD}/dists/ports; \ | > | - rm -f CHECKSUM.MD5; \ | > | - md5 * > CHECKSUM.MD5) | > | + rm -f .CHECKSUM.MD5 CHECKSUM.SHA256; \ | > | + md5 * > .CHECKSUM.MD5; \ | > | + sha256 * > CHECKSUM.SHA256; \ | > | + mv .CHECKSUM.MD5 CHECKSUM.MD5) |=20 | Curiosity overcomes me; why the "md5 > .blah; mv .blah blah" dance? Probably because of the previous instruction. ``sha256 *'' will not include hidden files and thus will not include '.CHECKSUM.MD5'. -- Rui Paulo --wac7ysb48OaltWcw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (NetBSD) iD8DBQFDOpELZPqyxs9FH4QRAgUKAJwNcBgUPSGtbUWbnqfQt4hzBt9lsACfXARu cZV7ZOuDA7VygVHSwBhNwEQ= =VtZq -----END PGP SIGNATURE----- --wac7ysb48OaltWcw--