diff options
author | trevor <trevor@FreeBSD.org> | 2005-01-14 11:24:38 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2005-01-14 11:24:38 +0000 |
commit | 074bb50bdfff799116dbbfd71813909f53ef796d (patch) | |
tree | 193bd56f3a3eec5e4d410da72daee8e47e903243 /lang/gcc295 | |
parent | e98401e3d5d0df0b7ba1601da8382e7d7b976a8b (diff) | |
download | FreeBSD-ports-074bb50bdfff799116dbbfd71813909f53ef796d.zip FreeBSD-ports-074bb50bdfff799116dbbfd71813909f53ef796d.tar.gz |
This does compile on the Alpha--well, sometimes it does. I agree with kris'
speculation that the default CFLAGS may be causing the problem seen on the
package-building cluster. Try to work around the problem.
Diffstat (limited to 'lang/gcc295')
-rw-r--r-- | lang/gcc295/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/gcc295/Makefile b/lang/gcc295/Makefile index 9e33b31..98cba44 100644 --- a/lang/gcc295/Makefile +++ b/lang/gcc295/Makefile @@ -18,7 +18,7 @@ DISTFILES= gcc-core-${GCC_REV}${EXTRACT_SUFX} \ MAINTAINER= trevor@FreeBSD.org COMMENT= GNU Compiler Collection -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= alpha i386 USE_BZIP2= yes LATEST_LINK= gcc295 @@ -29,6 +29,10 @@ LATEST_LINK= gcc295 .include <bsd.port.pre.mk> +.if ${ARCH} = alpha +WITHOUT_CPU_CFLAGS= yes +.endif + .if ${OSVERSION} >= 500039 WITHOUT_CPU_CFLAGS= yes .endif |