diff options
author | dbn <dbn@FreeBSD.org> | 2013-07-29 04:39:43 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2013-07-29 04:39:43 +0800 |
commit | 28decc02816b8c2f40a2e69aaafb6afe83aa81c9 (patch) | |
tree | daffc095ccc00f9290ca7929c1598a9daba573e3 /lang/pypy | |
parent | f126dc53bfc9091e99b25ea6d99922eeb68bfe59 (diff) | |
download | freebsd-ports-gnome-28decc02816b8c2f40a2e69aaafb6afe83aa81c9.tar.gz freebsd-ports-gnome-28decc02816b8c2f40a2e69aaafb6afe83aa81c9.tar.zst freebsd-ports-gnome-28decc02816b8c2f40a2e69aaafb6afe83aa81c9.zip |
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.
Diffstat (limited to 'lang/pypy')
-rw-r--r-- | lang/pypy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/pypy/Makefile b/lang/pypy/Makefile index abde358fd9ee..b0ce48d1da82 100644 --- a/lang/pypy/Makefile +++ b/lang/pypy/Makefile @@ -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 |