diff options
author | pav <pav@FreeBSD.org> | 2009-01-06 05:05:49 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-01-06 05:05:49 +0800 |
commit | fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb (patch) | |
tree | 1f6b633bd7844aa504f407e530e6892e38d0b9c5 /math/algae | |
parent | 54aa386a510858774daf943c9ab8069883f977c7 (diff) | |
download | freebsd-ports-gnome-fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb.tar.gz freebsd-ports-gnome-fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb.tar.zst freebsd-ports-gnome-fb4c1b2e93bf0f4106c6b1895f7dd96af9db0bcb.zip |
- Remove conditional checks for FreeBSD 5.x and older
Diffstat (limited to 'math/algae')
-rw-r--r-- | math/algae/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/algae/Makefile b/math/algae/Makefile index 39a785aaa61a..2008b4a81965 100644 --- a/math/algae/Makefile +++ b/math/algae/Makefile @@ -42,8 +42,8 @@ pre-configure: .include <bsd.port.pre.mk> -.if ( ${ARCH} == "alpha" && ${OSVERSION} > 502102 ) || ${ARCH} == "sparc64" -BROKEN= Configure fails on alpha 5.x and sparc64 +.if ${ARCH} == "alpha" || ${ARCH} == "sparc64" +BROKEN= Configure fails on alpha and sparc64 .endif .include <bsd.port.post.mk> |