diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2005-03-19 16:44:02 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2005-03-19 16:44:02 +0000 |
commit | 092324072dc928b97ba712e3cd787be0715308e2 (patch) | |
tree | 0deda17fd1c412a0c10ab1971d2798739f80eb5f /devel/boehm-gc/Makefile | |
parent | aed9ff6f1f124a356b8e3431d92503f22a08d04f (diff) |
Fix build on powerpc.
PR: ports/78577
Submitted by: Martin Minkus <diskiller@diablo.diskiller.net>
Notes
Notes:
svn path=/head/; revision=131645
Diffstat (limited to 'devel/boehm-gc/Makefile')
-rw-r--r-- | devel/boehm-gc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/boehm-gc/Makefile b/devel/boehm-gc/Makefile index ba5baf455f1d..07837e1f43af 100644 --- a/devel/boehm-gc/Makefile +++ b/devel/boehm-gc/Makefile @@ -48,8 +48,8 @@ PKGNAMESUFFIX:= ${PKGNAMESUFFIX}+fulldebug MAN3= gc.3 -.if ${ARCH} != "i386" && ${ARCH} != "alpha" && ${ARCH} != "amd64" && ${ARCH} != "sparc64" -BROKEN= "Does not compile on !i386 and !alpha and !amd64 and !sparc64" +.if ${ARCH} != "i386" && ${ARCH} != "alpha" && ${ARCH} != "amd64" && ${ARCH} != "sparc64" && ${ARCH} != "powerpc" +BROKEN= "Does not compile on !i386 and !alpha and !amd64 and !sparc64 and !powerpc" .endif post-patch: |