diff options
author | pav <pav@FreeBSD.org> | 2009-07-06 16:27:51 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-07-06 16:27:51 +0800 |
commit | 969926d481ada3f5812bdf411a7586384e96351c (patch) | |
tree | 1378961ce19b5efec5904efdae3b97dc9663ed2d /sysutils | |
parent | c9e43388a9a84249a7c3f0c242ce3a96ed5964b6 (diff) | |
download | freebsd-ports-gnome-969926d481ada3f5812bdf411a7586384e96351c.tar.gz freebsd-ports-gnome-969926d481ada3f5812bdf411a7586384e96351c.tar.zst freebsd-ports-gnome-969926d481ada3f5812bdf411a7586384e96351c.zip |
- Mark BROKEN on amd64 - error: conflicting types for 'intmax_t'
Reported by: pointyhat
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/busybox/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/busybox/Makefile b/sysutils/busybox/Makefile index 5d38ad353f4f..d1c9402b1d90 100644 --- a/sysutils/busybox/Makefile +++ b/sysutils/busybox/Makefile @@ -21,6 +21,12 @@ USE_GMAKE= yes PLIST_FILES= bin/busybox +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= does not compile +.endif + do-configure: ${CP} ${FILESDIR}/data-.config ${WRKSRC}/.config cd ${WRKSRC} && ${GMAKE} oldconfig @@ -28,4 +34,4 @@ do-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |