summaryrefslogtreecommitdiff
path: root/devel/avr-gcc
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-03-29 07:04:47 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-03-29 07:04:47 +0000
commitc590828233fb1d1e1aa494107db7d21ee353fa94 (patch)
treed47aa39b4e498c0a6118548f96b0babf19ce5ab0 /devel/avr-gcc
parentBROKEN on amd64: Configure fails (diff)
BROKEN on !i386 and !alpha: Does not build
Notes
Notes: svn path=/head/; revision=105587
Diffstat (limited to 'devel/avr-gcc')
-rw-r--r--devel/avr-gcc/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/avr-gcc/Makefile b/devel/avr-gcc/Makefile
index b80381b0e6fa..122778bce0cf 100644
--- a/devel/avr-gcc/Makefile
+++ b/devel/avr-gcc/Makefile
@@ -48,6 +48,12 @@ MAN1= cpp.1 avr-gcc.1 avr-g++.1 gcov.1
MAN7= fsf-funding.7 gfdl.7 gpl.7
INFO= cpp gcc gccint cppinternals
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} != "i386" && ${ARCH} != "alpha"
+BROKEN= "Does not build on !i386 and !alpha"
+.endif
+
# Since the pod2man in FreeBSD 4-stable's /usr/bin cannot be used, we
# help out by extracting precompiled manpages there.
pre-build:
@@ -58,4 +64,4 @@ pre-build:
${TAR} -xvzf ${DISTDIR}/${MAN_AUX} ; \
fi
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>