From owner-cvs-all@FreeBSD.ORG Tue Mar 29 15:03:31 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F30116A4CE; Tue, 29 Mar 2005 15:03:31 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED7B743D53; Tue, 29 Mar 2005 15:03:30 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.50 (FreeBSD)) id 1DGIFY-0004G6-8x; Tue, 29 Mar 2005 17:03:24 +0200 Date: Tue, 29 Mar 2005 17:03:24 +0200 From: Kirill Ponomarew To: Archie Cobbs Message-ID: <20050329150324.GD15379@voodoo.oberon.net> References: <200503291459.j2TExcTs045129@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200503291459.j2TExcTs045129@repoman.freebsd.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE Keywords: 579279786 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/java/classpath Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Mar 2005 15:03:31 -0000 On Tue, Mar 29, 2005 at 02:59:38PM +0000, Archie Cobbs wrote: > archie 2005-03-29 14:59:38 UTC > > FreeBSD ports repository > > Modified files: > java/classpath Makefile > Log: > Use ${ECHO_CMD} instead of ${ECHO} for "real" echoing. > > Approved by: portmgr (implicitly) Please send all your patches to portmgr first. You don't have implicit permissions to commit during the freeze. > Revision Changes Path > 1.12 +1 -1 ports/java/classpath/Makefile > http://cvsweb.FreeBSD.org/ports/java/classpath/Makefile.diff?r1=1.11&r2=1.12 > | =================================================================== > | RCS file: /usr/local/www/cvsroot/FreeBSD/ports/java/classpath/Makefile,v > | retrieving revision 1.11 > | retrieving revision 1.12 > | diff -u -p -r1.11 -r1.12 > | --- ports/java/classpath/Makefile 2005/03/28 23:01:36 1.11 > | +++ ports/java/classpath/Makefile 2005/03/29 14:59:38 1.12 > | @@ -3,7 +3,7 @@ > | # Date created: Sep 1, 2004 > | # Whom: ijliao > | # > | -# $FreeBSD: /usr/local/www/cvsroot/FreeBSD/ports/java/classpath/Makefile,v 1.11 2005/03/28 23:01:36 archie Exp $ > | +# $FreeBSD: /usr/local/www/cvsroot/FreeBSD/ports/java/classpath/Makefile,v 1.12 2005/03/29 14:59:38 archie Exp $ > | # > | > | PORTNAME= classpath > | @@ -36,6 +36,6 @@ post-install: > | @${FIND} ${dir} -type d | ${SORT} -r | \ > | ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} > | .endfor > | - @${ECHO} '@unexec rmdir %D/lib/security 2>/dev/null || true' >> ${TMPPLIST} > | + @${ECHO_CMD} '@unexec rmdir %D/lib/security 2>/dev/null || true' >> ${TMPPLIST} > | > | .include -Kirill