diff options
author | kris <kris@FreeBSD.org> | 2004-02-25 18:36:46 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-25 18:36:46 +0800 |
commit | 2b0b43c3aa03f6322da37631520844e609a434c3 (patch) | |
tree | d5c4b861124171df201ea8f2148e5ec3fd61205a /math | |
parent | bb57303be8c7033cdfc84e6cd1719a08979a7870 (diff) | |
download | freebsd-ports-gnome-2b0b43c3aa03f6322da37631520844e609a434c3.tar.gz freebsd-ports-gnome-2b0b43c3aa03f6322da37631520844e609a434c3.tar.zst freebsd-ports-gnome-2b0b43c3aa03f6322da37631520844e609a434c3.zip |
Correct previous commit:
BROKEN on alpha 5.x: Does not compile
Diffstat (limited to 'math')
-rw-r--r-- | math/freefem++/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/freefem++/Makefile b/math/freefem++/Makefile index 547a0501052e..16883ca42f05 100644 --- a/math/freefem++/Makefile +++ b/math/freefem++/Makefile @@ -30,8 +30,8 @@ DOCS= BUGS COPYRIGHT HISTORY README DOC/manual.pdf .include <bsd.port.pre.mk> -.if ${ARCH} != "i386" && ${ARCH} != "amd64" -BROKEN= "Does not compile on !i386 and !amd64" +.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102 +BROKEN= "Does not compile on alpha 5.x" .endif .if ${OSVERSION} < 501103 |