Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Feb 2019 22:04:17 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493011 - head/devel/powerpc64-gcc
Message-ID:  <201902152204.x1FM4H2K092033@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902152204.x1FM4H2K092033>