diff options
-rw-r--r-- | archivers/star/Makefile | 4 | ||||
-rw-r--r-- | sysutils/srmt/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/archivers/star/Makefile b/archivers/star/Makefile index eacc877f84ec..881cb03285a2 100644 --- a/archivers/star/Makefile +++ b/archivers/star/Makefile @@ -25,6 +25,10 @@ MLINKS= star.1 ustar.1 .include <bsd.port.pre.mk> +if ${OSVERSION} >= 800032 +BROKEN= does not compile +.endif + post-extract: .if ${MACHINE_ARCH} != "i386" || ${CC} != "cc" @${LN} -sf i386-freebsd-cc.rul \ diff --git a/sysutils/srmt/Makefile b/sysutils/srmt/Makefile index cb95e64c61a7..34f3ddbd5add 100644 --- a/sysutils/srmt/Makefile +++ b/sysutils/srmt/Makefile @@ -20,6 +20,12 @@ USE_GMAKE= yes MAKE_ENV= MAKEPROG=${GMAKE} CCOM=${CC} MAN1= srmt.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 800032 +BROKEN= does not compile +.endif + post-extract: .if ${MACHINE_ARCH} != "i386" || ${CC} != "cc" @${LN} -sf i386-freebsd-cc.rul \ @@ -43,4 +49,4 @@ do-install: fi @${CHMOD} u+s ${PREFIX}/sbin/srmt -.include <bsd.port.mk> +.include <bsd.port.post.mk> |