svn commit: r323854 - head/lang/pypy

David Naylor dbn at FreeBSD.org
Sun Jul 28 20:39:43 UTC 2013


Author: dbn
Date: Sun Jul 28 20:39:43 2013
New Revision: 323854
URL: http://svnweb.freebsd.org/changeset/ports/323854

Log:
  Fix lang/pypy (and INDEX build).
  
  Portlint recommends "USE_GCC=yes+" however such an option breaks everything.
  
  Ignore portlint and use "USE+GCC=4.2+" as the port will compile with just about
  any valid C compiler.

Modified:
  head/lang/pypy/Makefile

Modified: head/lang/pypy/Makefile
==============================================================================
--- head/lang/pypy/Makefile	Sun Jul 28 20:37:23 2013	(r323853)
+++ head/lang/pypy/Makefile	Sun Jul 28 20:39:43 2013	(r323854)
@@ -67,7 +67,7 @@ LOCALBASE_REFIX=	\
 .if ${CC:T} == cc && ( exists(/usr/bin/clang) || exists(${LOCALBASE}/clang) )
 CC=		clang
 .else
-USE_GCC=	yes+
+USE_GCC=	4.2+
 .endif
 .endif
 


More information about the svn-ports-all mailing list