diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2006-12-19 18:32:03 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2006-12-19 18:32:03 +0000 |
commit | f4bc441dca675ebe9c9c5f11e6adc3b83bd68ccf (patch) | |
tree | 8ca14f4db4b221ac7953a20d2317659319b9c5b0 | |
parent | 2aecfd728910523256b40e77a3e1b15ea2785a9e (diff) | |
download | ports-f4bc441dca675ebe9c9c5f11e6adc3b83bd68ccf.tar.gz ports-f4bc441dca675ebe9c9c5f11e6adc3b83bd68ccf.zip |
Mark program ignore on amd64, as the binary crashes on startup
Notes
Notes:
svn path=/head/; revision=180177
-rw-r--r-- | editors/qemacs/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/qemacs/Makefile b/editors/qemacs/Makefile index 1537aec5d266..2e18aa75652c 100644 --- a/editors/qemacs/Makefile +++ b/editors/qemacs/Makefile @@ -23,6 +23,12 @@ MAKE_ARGS+= CFLAGS="${CFLAGS} -I${X11BASE}/include -I${LOCALBASE}/include" \ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" MAN1= qe.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +IGNORE= crashes on startup +.endif + post-patch: ${REINPLACE_CMD} -e 's,HOST_CC,CC,g' ${WRKSRC}/Makefile @@ -32,4 +38,4 @@ do-install: cd ${WRKSRC}; ${INSTALL_DATA} kmaps ligatures ${DATADIR:S/qemacs/qe/} ${INSTALL_MAN} ${WRKSRC}/qe.1 ${MANPREFIX}/man/man1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |