diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2004-03-17 12:46:45 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2004-03-17 12:46:45 +0000 |
commit | 8ff6db63fec20c92ac97405f7ac66cb9b8535a2a (patch) | |
tree | a81965a48cc0a6943bb6d0313a40fbcca162fbdf /math | |
parent | IGNORE on alpha: Hangs during build (diff) |
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
Notes
Notes:
svn path=/head/; revision=104284
Diffstat (limited to 'math')
-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 363e068e2572..1292a4df2fca 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 |