svn commit: r493011 - head/devel/powerpc64-gcc

John Baldwin jhb at FreeBSD.org
Fri Feb 15 22:04:18 UTC 2019


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


More information about the svn-ports-all mailing list