diff options
author | linimon <linimon@FreeBSD.org> | 2004-03-17 20:46:45 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-03-17 20:46:45 +0800 |
commit | c62aee9b7120eaaa814460fa2ce56665c0d6454e (patch) | |
tree | 63bef2f804043377af745e470300d8c7ae8f7e09 /math/algae | |
parent | c93d420d79d757bfc08d4f087e096a216dc92141 (diff) | |
download | freebsd-ports-graphics-c62aee9b7120eaaa814460fa2ce56665c0d6454e.tar.gz freebsd-ports-graphics-c62aee9b7120eaaa814460fa2ce56665c0d6454e.tar.zst freebsd-ports-graphics-c62aee9b7120eaaa814460fa2ce56665c0d6454e.zip |
Fix 'make describe' with older, buggy makes.
PR: ports/64109
Submitted by: Scott Lipcon <slipcon@mercea.net>
Lesson learned the hard way by: linimon@FreeBSD.org
Diffstat (limited to 'math/algae')
-rw-r--r-- | math/algae/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/algae/Makefile b/math/algae/Makefile index 363e068e257..1292a4df2fc 100644 --- a/math/algae/Makefile +++ b/math/algae/Makefile @@ -23,7 +23,7 @@ MAN1= algae.1 .include <bsd.port.pre.mk> -.if (${ARCH} == "alpha" && ${OSVERSION} > 502102) || ${ARCH} == "sparc64" +.if ( ${ARCH} == "alpha" && ${OSVERSION} > 502102 ) || ${ARCH} == "sparc64" BROKEN= "Configure fails on alpha 5.x and sparc64" .endif |