svn commit: r396461 - head/archivers/p7zip

Alexey Dokuchaev danfe at FreeBSD.org
Wed Sep 9 10:56:42 UTC 2015


Author: danfe
Date: Wed Sep  9 10:56:41 2015
New Revision: 396461
URL: https://svnweb.freebsd.org/changeset/ports/396461

Log:
  It turned out -fPIC is required on sparc64 as well: it dumps core without
  it on extraction, which turn breaks e.g. `sysutils/namefix' port.  Do not
  bump port revision again as it was bumped just couple of hours ago, which
  is just too small in Tier-2 land for which we do not produce any packages
  anyways.
  
  Tested on:	flame

Modified:
  head/archivers/p7zip/Makefile

Modified: head/archivers/p7zip/Makefile
==============================================================================
--- head/archivers/p7zip/Makefile	Wed Sep  9 09:40:53 2015	(r396460)
+++ head/archivers/p7zip/Makefile	Wed Sep  9 10:56:41 2015	(r396461)
@@ -24,6 +24,7 @@ CFLAGS_aarch64=	-fPIC
 CFLAGS_amd64=	-fPIC
 CFLAGS_ia64=	-fPIC
 CFLAGS_powerpc=	-fPIC
+CFLAGS_sparc64=	-fPIC
 
 OPTIONS_DEFINE=	DOCS
 


More information about the svn-ports-all mailing list