diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-03-26 20:27:00 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-03-26 20:27:00 +0000 |
commit | c3922163297d77140b8b11e87915acba0f22c82b (patch) | |
tree | 401c23b4fc18ded4ed929d6e7e409f757f9af34e /editors | |
parent | This is still broken on !i386, so add back BROKEN commented out in the (diff) |
BROKEN on !i386: Signal 11 errors during build
Approved by: portmgr (self)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code-browser/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/code-browser/Makefile b/editors/code-browser/Makefile index 44ab5110a690..de3bd01d06d3 100644 --- a/editors/code-browser/Makefile +++ b/editors/code-browser/Makefile @@ -22,9 +22,15 @@ USE_REINPLACE= yes USE_GNOME= gtk20 USE_GCC= 3.4+ +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= "Does not build on !i386; signal 11 errors during build" +.endif + post-patch: @${REINPLACE_CMD} -e "s,/usr/local,${PREFIX}," \ -e "s,^CC,#CC," -e "s,^CFLAGS,#CFLAGS," \ ${WRKSRC}/${MAKEFILE} ${WRKSRC}/zinc/${MAKEFILE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |