From owner-svn-ports-all@freebsd.org Fri Feb 15 22:04:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F11514EB3E6; Fri, 15 Feb 2019 22:04:18 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C61BA87CB9; Fri, 15 Feb 2019 22:04:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BCA8D24C7C; Fri, 15 Feb 2019 22:04:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1FM4HR7092034; Fri, 15 Feb 2019 22:04:17 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1FM4H2K092033; Fri, 15 Feb 2019 22:04:17 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201902152204.x1FM4H2K092033@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Fri, 15 Feb 2019 22:04:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493011 - head/devel/powerpc64-gcc X-SVN-Group: ports-head X-SVN-Commit-Author: jhb X-SVN-Commit-Paths: head/devel/powerpc64-gcc X-SVN-Commit-Revision: 493011 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C61BA87CB9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 15 Feb 2019 22:04:18 -0000 Author: jhb (src,doc committer) Date: Fri Feb 15 22:04:17 2019 New Revision: 493011 URL: https://svnweb.freebsd.org/changeset/ports/493011 Log: Fix a regression for devel/amd64-gcc introduced in r488642. Restore the value of TARGETARCH to be the FreeBSD architecture name. This fixes the block to remove float.h in the amd64 compiler. This showed up as a packing list failure on amd64-gcc, but it also undid r475290 for amd64-gcc. Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D19126 Modified: head/devel/powerpc64-gcc/Makefile Modified: head/devel/powerpc64-gcc/Makefile ============================================================================== --- head/devel/powerpc64-gcc/Makefile Fri Feb 15 22:00:21 2019 (r493010) +++ head/devel/powerpc64-gcc/Makefile Fri Feb 15 22:04:17 2019 (r493011) @@ -2,7 +2,7 @@ PORTNAME= gcc PORTVERSION= 6.4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMEPREFIX?= powerpc64- @@ -25,7 +25,7 @@ PLIST_SUB= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ GCC_TARGET=${GCC_TARGET} \ GCC_VERSION=${PORTVERSION} -TARGETARCH= ${PKGNAMEPREFIX:C/-//g:S/amd64/x86_64/} +TARGETARCH= ${PKGNAMEPREFIX:C/-//g} .if empty(GCC_TARGET) # We are building for a FreeBSD target