From owner-svn-ports-head@freebsd.org Mon Apr 25 05:59:37 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CBBCB1CC16; Mon, 25 Apr 2016 05:59:37 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AC91101A; Mon, 25 Apr 2016 05:59:36 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [192.168.1.21] (176.red-83-34-249.dynamicip.rima-tde.net [83.34.249.176]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 23BC143BC9; Mon, 25 Apr 2016 00:59:27 -0500 (CDT) Subject: Re: svn commit: r413965 - head/lang/gcc7-devel To: Gerald Pfeifer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201604250447.u3P4l4L7099866@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <571DB23D.7000406@marino.st> Date: Mon, 25 Apr 2016 07:59:25 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <201604250447.u3P4l4L7099866@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 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: Mon, 25 Apr 2016 05:59:37 -0000 On 4/25/2016 6:47 AM, Gerald Pfeifer wrote: > Author: gerald > Date: Mon Apr 25 04:47:04 2016 > New Revision: 413965 > URL: https://svnweb.freebsd.org/changeset/ports/413965 > > Log: > Update to the 20160417 development snapshot (early stage 1) of GCC 7. > > Only override CONFIGURE_TARGET for amd64 which is x86-64/x86_64 for the > rest of the world including GNU and GCC. For all other architectures > it already defaults to the value we were setting. > > Modified: > head/lang/gcc7-devel/Makefile > head/lang/gcc7-devel/distinfo > > Modified: head/lang/gcc7-devel/Makefile > ============================================================================== > --- head/lang/gcc7-devel/Makefile Sun Apr 24 22:41:27 2016 (r413964) > +++ head/lang/gcc7-devel/Makefile Mon Apr 25 04:47:04 2016 (r413965) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= gcc > -PORTVERSION= 7.0.0.s20160417 > +PORTVERSION= 7.0.0.s20160424 > CATEGORIES= lang java > MASTER_SITES= GCC/snapshots/${DISTVERSION} > PKGNAMESUFFIX= ${SUFFIX}-devel > @@ -64,8 +64,6 @@ CONFIGURE_ARGS+= --disable-multilib > > .if ${ARCH} == "amd64" > CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL} > -.else > -CONFIGURE_TARGET= ${ARCH}-portbld-${OPSYS:tl}${OSREL} > .endif Perhaps replacing entire condition with CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64}-portbld-${OPSYS:tl}${OSREL} is the cleanest approach. That technique is used in a lot of ports. John