diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-07 12:47:40 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-07 12:47:40 +0000 |
commit | f6ce13f22f6f0367a693480f214e087266f9bebf (patch) | |
tree | f55ef77c968ea57d4064a7de65d6b83b7c881410 /devel/mob | |
parent | 6dbf9ca50aa361f6108280dc9b4570c4e191dc4c (diff) |
BROKEN On ia64 and amd64: Configure fails
Notes
Notes:
svn path=/head/; revision=103194
Diffstat (limited to 'devel/mob')
-rw-r--r-- | devel/mob/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/mob/Makefile b/devel/mob/Makefile index bc0a38d4a624..3cfd7f6385cf 100644 --- a/devel/mob/Makefile +++ b/devel/mob/Makefile @@ -21,6 +21,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_GMAKE= yes GNU_CONFIGURE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Configure fails on amd64 or ia64" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/inspector ${PREFIX}/bin .if !defined(NOPORTDOCS) @@ -28,4 +34,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/doc/mob.ps ${PREFIX}/share/doc/mob .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |