diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-08-31 03:21:01 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-08-31 03:21:01 +0000 |
commit | 711b04f690dcc34efe92e6fc5d25302fafdb52c0 (patch) | |
tree | 9199d5d34f46da683e3f8a3f2ff818d7d66f5bcd /archivers | |
parent | BROKEN on sparc64: Does not compile completely (diff) |
BROKEN on sparc64: Does not compile
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/dzip/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/archivers/dzip/Makefile b/archivers/dzip/Makefile index 2cf03d63afad..11cdb8e07cc9 100644 --- a/archivers/dzip/Makefile +++ b/archivers/dzip/Makefile @@ -24,6 +24,12 @@ ALL_TARGET= ${PORTNAME} PLIST_FILES= bin/${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + post-extract: @${FIND} -E ${WRKDIR} -type f -print0 | \ ${XARGS} -0 ${REINPLACE_CMD} -e 's/[[:cntrl:]]*$$//' @@ -35,4 +41,4 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |