From owner-svn-ports-head@FreeBSD.ORG Wed Mar 5 13:46:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69A6B389; Wed, 5 Mar 2014 13:46:33 +0000 (UTC) Received: from mail-yh0-x229.google.com (mail-yh0-x229.google.com [IPv6:2607:f8b0:4002:c01::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF0B3B0D; Wed, 5 Mar 2014 13:46:32 +0000 (UTC) Received: by mail-yh0-f41.google.com with SMTP id f73so973959yha.0 for ; Wed, 05 Mar 2014 05:46:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=njiqzgsNgmhOSj3PeNPYdCvBk79G0ZKlPIoTRvOQ6Ag=; b=mt7QU68udki3cl5R1/QybML+l9+acMsAsV6RcJJM2e5Vjf0zzIGFm4frTMGaaSD1UO iCggCmJJ8sqaTLe4LNYvsoST0Tuscmfa93qgANHhJ1MROYY93OTjyVtPxnzevYEQTUUd dg8o4nXcOY9+BEipxoic+yFz81+yDaVrbG3A/aVCOo7txdumpg+IMWIfruLtCCOZxzCA /exZwwVWras7FnXMsnQt7MNwaoJY+BxtzVfc5XtrbnUAEhkpyC2dcOwgIdTD/KghJ9Xs iFiyMG/5Qt1qOQ0EC4j+/UfBHdh+TeD/UV+GFfXHKmvgixjgxTKnDPhL+ynF3KZX5DEA cbyw== X-Received: by 10.236.44.173 with SMTP id n33mr6742371yhb.98.1394027192232; Wed, 05 Mar 2014 05:46:32 -0800 (PST) Received: from [192.168.0.106] ([179.217.196.192]) by mx.google.com with ESMTPSA id n4sm7725708yhc.13.2014.03.05.05.46.30 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 05 Mar 2014 05:46:31 -0800 (PST) Sender: =?UTF-8?Q?Danilo_Eg=C3=AAa_Gondolfo?= Message-ID: <53172AE6.9090404@freebsd.org> Date: Wed, 05 Mar 2014 10:47:18 -0300 From: "Danilo E. Gondolfo" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Alexey Dokuchaev Subject: Re: svn commit: r344402 - head/math/primegen References: <201402151509.s1FF9VUc063590@svn.freebsd.org> <20140305025848.GA91204@FreeBSD.org> In-Reply-To: <20140305025848.GA91204@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 13:46:33 -0000 On 03/04/14 23:58, Alexey Dokuchaev wrote: > On Sat, Feb 15, 2014 at 03:09:31PM +0000, Danilo Egea Gondolfo wrote: >> New Revision: 344402 >> URL: http://svnweb.freebsd.org/changeset/ports/344402 >> QAT: https://qat.redports.org/buildarchive/r344402/ > > (Picking random one among similar commits...) > >> - @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin >> + @${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin >> .endfor >> .for file in ${HEADER_FILES} >> - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include >> + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include >> [...] >> + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/lib >> .endfor >> + @${INSTALL_MAN} ${WRKSRC}/primes.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 >> + @${INSTALL_MAN} ${WRKSRC}/primegaps.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 >> + @${INSTALL_MAN} ${WRKSRC}/primegen.3 ${STAGEDIR}${MAN3PREFIX}/man/man3 > > Guys, please do not mute (unmute) installation commands (INSTALL_FOO, CP, > COPYTREE, etc.). Muting them makes build logs less useful for debugging of > possible problems on installation stages, and generally leaves an impression > that nothing was installed. My fault. Generally I remove the @ from installation commands. I forgot to do that. Sorry. Danilo. > > This matter was discussed quite a number of times already; please try to > pay attention to some svn-ports-@ mail traffic. > > ./danfe > . >