From owner-svn-ports-all@FreeBSD.ORG Fri Nov 22 11:52:59 2013 Return-Path: Delivered-To: svn-ports-all@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 20964D35; Fri, 22 Nov 2013 11:52:59 +0000 (UTC) Received: from mailrelay007.isp.belgacom.be (mailrelay007.isp.belgacom.be [195.238.6.173]) by mx1.freebsd.org (Postfix) with ESMTP id 37FB52F41; Fri, 22 Nov 2013 11:52:57 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApoGAENEj1JbsJwY/2dsb2JhbABZgwe9GIEiF3SCJQEBBTocHgUQCw4KCSUPKh4GE4gFAcEvF48HB4QyA5gTkhODKTs Received: from 24.156-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.156.24]) by relay.skynet.be with ESMTP; 22 Nov 2013 12:52:50 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.7/8.14.7) with ESMTP id rAMBqnhx071294; Fri, 22 Nov 2013 12:52:49 +0100 (CET) (envelope-from tijl@FreeBSD.org) Date: Fri, 22 Nov 2013 12:52:48 +0100 From: Tijl Coosemans To: Mathieu Arnold Subject: Re: svn commit: r334573 - head/devel/raknet Message-ID: <20131122125248.22d4bdfd@kalimero.tijl.coosemans.org> In-Reply-To: <4A32B27D1E6D98F73F717130@atuin.in.mat.cc> References: <201311221131.rAMBVEeU056491@svn.freebsd.org> <4A32B27D1E6D98F73F717130@atuin.in.mat.cc> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Ganael LAPLANCHE , ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Nov 2013 11:52:59 -0000 On Fri, 22 Nov 2013 12:34:05 +0100 Mathieu Arnold wrote: > +--On 22 novembre 2013 11:31:14 +0000 Ganael LAPLANCHE > wrote: > | + (cd ${WRKSRC}/Source/ && ${COPYTREE_SHARE} \*.h > ${STAGEDIR}${PREFIX}/include/raknet) | + (cd ${WRKSRC}/Help/ && > ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}/Help) > > You can also get rid of the parenthesis, as each line is ran in its own > shell, they don't do anything except maybe fork yet another shell :-) With bmake in jobs mode (-j flag) the entire block is run by one shell so a command with cd in it has to be put in parenthesis if it must not affect the next command. Of course, normally -j isn't used in the ports tree.