diff options
author | cjep <cjep@pkgsrc.org> | 2002-04-20 15:34:44 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-04-20 15:34:44 +0000 |
commit | 0b435b23950370ea78e5e5407469252b480638e7 (patch) | |
tree | d053f2dba75c33c54ca44faf0dcc893b27bede6e /cad | |
parent | 5bb8732d5eb8dbdce20f900539fc5fefb065521e (diff) | |
download | pkgsrc-0b435b23950370ea78e5e5407469252b480638e7.tar.gz |
On arm32, avoid egcs internal compiler errors by using gcc-2.95.3
Diffstat (limited to 'cad')
-rw-r--r-- | cad/fasthenry/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cad/fasthenry/Makefile b/cad/fasthenry/Makefile index f3792a19338..e72bed8da2b 100644 --- a/cad/fasthenry/Makefile +++ b/cad/fasthenry/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/09/27 23:17:46 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2002/04/20 15:34:44 cjep Exp $ # DISTNAME= fasthenry-3.0-12Nov96 @@ -34,4 +34,9 @@ MAKE_ENV+= LIBS="${LIBS}" LIBS= -lm .endif +.if (${MACHINE_ARCH} == arm32) +.include "../../lang/gcc/Makefile.gcc" +MAKE_FLAGS+= CC=${CC} +.endif + .include "../../mk/bsd.pkg.mk" |