diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2007-05-27 04:38:49 +0800 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2007-05-27 04:38:49 +0800 |
commit | add90dd319be1d4e500d5a1fc89f648ef45d6af8 (patch) | |
tree | 5296c17af9e0f98777120d8d08a8bc295a1b6000 /mail | |
parent | 047242b410208c78bebccfd002d545cb0c7bc1aa (diff) | |
download | freebsd-ports-gnome-add90dd319be1d4e500d5a1fc89f648ef45d6af8.tar.gz freebsd-ports-gnome-add90dd319be1d4e500d5a1fc89f648ef45d6af8.tar.zst freebsd-ports-gnome-add90dd319be1d4e500d5a1fc89f648ef45d6af8.zip |
BROKEN with gcc 4.2
Diffstat (limited to 'mail')
-rw-r--r-- | mail/crashecho/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mail/crashecho/Makefile b/mail/crashecho/Makefile index 550a3e495efd..fd24df3855e5 100644 --- a/mail/crashecho/Makefile +++ b/mail/crashecho/Makefile @@ -35,10 +35,17 @@ MAN1= crashecho.1 \ crashwrite.1 MAN5= crashecho.conf.5 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + post-extract: cd ${WRKDIR} && tar zxf ${PORTNAME}-${PORTVERSION}.tar.gz post-install: ${MKDIR} ${PREFIX}/etc/ftn ${INSTALL_DATA} ${WRKSRC}/doc/crashecho.conf ${PREFIX}/etc/ftn/crashecho.conf.sample -.include <bsd.port.mk> + +.include <bsd.port.post.mk> |