diff options
author | kris <kris@FreeBSD.org> | 2006-01-14 17:33:27 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2006-01-14 17:33:27 +0800 |
commit | 3c2f3e1a92faceb6e664e1e77f234a2f13cb74a8 (patch) | |
tree | ae5f06985673d742712116db2a2803c34c8bcf89 /games/jfduke3d | |
parent | aa0c051d63c84ab340bc6b96444b9d3f284031c6 (diff) | |
download | freebsd-ports-gnome-3c2f3e1a92faceb6e664e1e77f234a2f13cb74a8.tar.gz freebsd-ports-gnome-3c2f3e1a92faceb6e664e1e77f234a2f13cb74a8.tar.zst freebsd-ports-gnome-3c2f3e1a92faceb6e664e1e77f234a2f13cb74a8.zip |
BROKEN on !i386: Hard-codes i386-specific compiler flags
Diffstat (limited to 'games/jfduke3d')
-rw-r--r-- | games/jfduke3d/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/games/jfduke3d/Makefile b/games/jfduke3d/Makefile index 699f3bde379a..2015a7379c80 100644 --- a/games/jfduke3d/Makefile +++ b/games/jfduke3d/Makefile @@ -37,16 +37,8 @@ SUB_FILES= pkg-message .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" -BROKEN= "Does not build on amd64" -.endif - -.if ${ARCH} == "ia64" -BROKEN= "Does not build on ia64" -.endif - -.if ${OSVERSION} < 500000 -BROKEN= "Can't build on 4.x" +.if ${ARCH} != "i386" +BROKEN= "Does not build on !i386 (hardcodes i386-specific compiler flags)" .endif pre-build: |