diff options
author | clement <clement@FreeBSD.org> | 2004-12-12 06:15:14 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-12-12 06:15:14 +0800 |
commit | 1f56f9b6c3ef8d761741fc48d5667ee231090317 (patch) | |
tree | 395add1c13875ad9ef46443ee4b1d5a399609ec0 | |
parent | d2af130affab08ca775fdee5c8bfca94f8a499f4 (diff) | |
download | freebsd-ports-gnome-1f56f9b6c3ef8d761741fc48d5667ee231090317.tar.gz freebsd-ports-gnome-1f56f9b6c3ef8d761741fc48d5667ee231090317.tar.zst freebsd-ports-gnome-1f56f9b6c3ef8d761741fc48d5667ee231090317.zip |
- Fix permission violation on ${PREFIX}/bin
Noticed by: kris
-rw-r--r-- | security/pwauth/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/security/pwauth/Makefile b/security/pwauth/Makefile index c6e7e16c9648..8013d68f26f1 100644 --- a/security/pwauth/Makefile +++ b/security/pwauth/Makefile @@ -13,8 +13,6 @@ MASTER_SITES= http://www.unixpapa.com/software/ MAINTAINER= clement@FreeBSD.org COMMENT= A Unix Web Authenticator -IGNORE= changes the permissions on ${LOCALBASE}/bin - USE_REINPLACE= yes PLIST_FILES= bin/pwauth @@ -27,7 +25,8 @@ post-patch: s/%%MINUID%%/1000/" ${WRKSRC}/config.h do-install: + -@${MKDIR} -p ${PREFIX}/bin @${INSTALL_PROGRAM} ${WRKSRC}/pwauth ${PREFIX}/bin - @${CHMOD} u=rxs ${PREFIX}/bin + @${CHMOD} u=rxs ${PREFIX}/bin/pwauth .include <bsd.port.post.mk> |