diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-15 11:11:20 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-15 11:11:20 +0000 |
commit | 84e6573457dc861b83bd5f496446c8fcee839e6d (patch) | |
tree | fe68a493864a272376d7d13a67f8523c6f5a9814 /lang/chicken | |
parent | b0ba56af35454ae0df2ac1e4bec55ac4f69bf67a (diff) | |
download | ports-84e6573457dc861b83bd5f496446c8fcee839e6d.tar.gz ports-84e6573457dc861b83bd5f496446c8fcee839e6d.zip |
BROKEN on amd64 and ia64: Coredump during build
Notes
Notes:
svn path=/head/; revision=104070
Diffstat (limited to 'lang/chicken')
-rw-r--r-- | lang/chicken/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/chicken/Makefile b/lang/chicken/Makefile index 40c69effcffa..1fa7c2d27a87 100644 --- a/lang/chicken/Makefile +++ b/lang/chicken/Makefile @@ -23,6 +23,12 @@ INSTALLS_SHLIB= yes MAN1= chicken-config.1 chicken-setup.1 chicken.1 csc.1 csi.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Coredump during build on amd64 and ia64" +.endif + post-patch: ${REINPLACE_CMD} -e 's/\(install-data-am: \)install-data-local/\1/' \ ${WRKSRC}/Makefile.in @@ -36,4 +42,4 @@ post-install: ${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |