diff options
author | linimon <linimon@FreeBSD.org> | 2010-04-05 23:17:17 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2010-04-05 23:17:17 +0800 |
commit | 6bf7d5e1f2a9b568386184e44f28ec06085e5498 (patch) | |
tree | 7953198997f05d04e1953d19dd80472e316986ee /games | |
parent | 72e43c731f7167424a09db711f6449f890c8563f (diff) | |
download | freebsd-ports-gnome-6bf7d5e1f2a9b568386184e44f28ec06085e5498.tar.gz freebsd-ports-gnome-6bf7d5e1f2a9b568386184e44f28ec06085e5498.tar.zst freebsd-ports-gnome-6bf7d5e1f2a9b568386184e44f28ec06085e5498.zip |
Sigh. I _meant_ to say powerpc. But since it invokes i386 asm, it's
not going to build on ia64, either.
Hat: portmgr
Diffstat (limited to 'games')
-rw-r--r-- | games/crafty/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/games/crafty/Makefile b/games/crafty/Makefile index 966a4ab00754..928bfce846d0 100644 --- a/games/crafty/Makefile +++ b/games/crafty/Makefile @@ -53,10 +53,8 @@ OPT= -DCPUS=4 -DHASHSTATS -DTRACE -DBOOKDIR=\\\"${WITH_BOOKDIR}\\\" \ .if ${ARCH} == "i386" OPT+= -DINLINE32 -.endif - -.if ${ARCH} == "ia64" || ${ARCH} == "sparc64" -BROKEN= Does not compile on ia64 or sparc64 +.elif ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" +BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif .if defined(WITH_BOOK) |