diff options
author | adamw <adamw@FreeBSD.org> | 2014-09-13 02:21:13 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-09-13 02:21:13 +0800 |
commit | de1926eacf8e36580b5b16a0dc75f21e6beed09f (patch) | |
tree | 4cd329f75b6e676f3e2548d491baf8963d27a44f | |
parent | cfe5a14d86cee7bab9f7c264cdb4809dda74d651 (diff) | |
download | freebsd-ports-gnome-de1926eacf8e36580b5b16a0dc75f21e6beed09f.tar.gz freebsd-ports-gnome-de1926eacf8e36580b5b16a0dc75f21e6beed09f.tar.zst freebsd-ports-gnome-de1926eacf8e36580b5b16a0dc75f21e6beed09f.zip |
The BROKEN message (Does not compile with GCC 4.2) isn't accurate. It simply
doesn't compile on amd64 (and probably sparc64).
Simplify by using NOT_FOR_ARCHS.
-rw-r--r-- | japanese/jmode/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/japanese/jmode/Makefile b/japanese/jmode/Makefile index 022eaeee22ef..dd44215b56bd 100644 --- a/japanese/jmode/Makefile +++ b/japanese/jmode/Makefile @@ -21,12 +21,6 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include <bsd.port.pre.mk> +NOT_FOR_ARCHS= amd64 sparc64 -.if ${OSVERSION} >= 700042 -.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" -BROKEN= Does not compile with GCC 4.2 -.endif -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |