diff options
author | miwi <miwi@FreeBSD.org> | 2010-03-20 22:53:50 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-03-20 22:53:50 +0800 |
commit | f487e718b331a6c3534cd11e64891b67840291bd (patch) | |
tree | 70bb43a301e90d7f32a21d8b12112a469fd3c0b7 /sysutils/su2 | |
parent | 8f8385125ddfcf06ce4371ad8f512aeeedb0bccb (diff) | |
download | freebsd-ports-gnome-f487e718b331a6c3534cd11e64891b67840291bd.tar.gz freebsd-ports-gnome-f487e718b331a6c3534cd11e64891b67840291bd.tar.zst freebsd-ports-gnome-f487e718b331a6c3534cd11e64891b67840291bd.zip |
- Mark BROKEN on HEAD: fails to build with new utmpx
Reported by: pointyhat
Diffstat (limited to 'sysutils/su2')
-rw-r--r-- | sysutils/su2/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/su2/Makefile b/sysutils/su2/Makefile index 09b46914874d..c2d265f2821e 100644 --- a/sysutils/su2/Makefile +++ b/sysutils/su2/Makefile @@ -18,7 +18,13 @@ NO_CDROM= "Don't sell for profit" MAN1= su2.1 PLIST_FILES= bin/su2 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 900007 +BROKEN= fails to build with new utmpx +.endif + post-patch: ${REINPLACE_CMD} -e 's,/etc/super,${PREFIX}/etc/super,g' ${WRKSRC}/su2.man -.include <bsd.port.mk> +.include <bsd.port.post.mk> |