diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-18 07:47:13 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-18 07:47:13 +0000 |
commit | 13e49e647b4d73a2ad9d8909957a79dfe6e48287 (patch) | |
tree | d57c2ddaf288a011a8c8550c12646b866f381607 /www/chpasswd | |
parent | ae26427c632d542ce91328588fe34a5d92130a17 (diff) | |
download | ports-13e49e647b4d73a2ad9d8909957a79dfe6e48287.tar.gz ports-13e49e647b4d73a2ad9d8909957a79dfe6e48287.zip |
Notes
Diffstat (limited to 'www/chpasswd')
-rw-r--r-- | www/chpasswd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/chpasswd/Makefile b/www/chpasswd/Makefile index be9348a64116..223ede1b084d 100644 --- a/www/chpasswd/Makefile +++ b/www/chpasswd/Makefile @@ -21,10 +21,16 @@ CONFIGURE_ARGS= --prefix=${PREFIX}/etc/chpasswd \ --enable-language=English \ --enable-cgidir=${PREFIX}/www/cgi-bin +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + pre-install: @${MKDIR} ${PREFIX}/www/cgi-bin post-install: @${ECHO} 'Remember, passwd and log file must be owned by httpd user, or chmod 777' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |