diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2004-12-02 01:36:46 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2004-12-02 01:36:46 +0000 |
commit | 7d78ef7cbb0fbe7fd8539fc2d25e060949a7c53d (patch) | |
tree | 3ce14142751928e112088a85cef2da8bb26e49f9 /editors | |
parent | Correct typo in previous (diff) |
BROKEN on ia64. Noted by kris
Notes
Notes:
svn path=/head/; revision=122954
Diffstat (limited to 'editors')
-rw-r--r-- | editors/kxmleditor/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/kxmleditor/Makefile b/editors/kxmleditor/Makefile index ed360b2cf6e0..44866e48a37e 100644 --- a/editors/kxmleditor/Makefile +++ b/editors/kxmleditor/Makefile @@ -20,8 +20,14 @@ USE_GMAKE= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes +.include <bsd.port.pre.mk> + post-patch: @${REINPLACE_CMD} -e 's|-O2||g' -e "s,-lpthread,${PTHREAD_LIBS},g" \ ${WRKSRC}/${CONFIGURE_SCRIPT} -.include <bsd.port.mk> +.if ${ARCH} == "ia64" +BROKEN= "Does not compile on ia64" +.endif + +.include <bsd.port.post.mk> |