aboutsummaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-12-11 22:15:14 +0000
committerClement Laforet <clement@FreeBSD.org>2004-12-11 22:15:14 +0000
commit5fc8ca7d8ca12c8cff6f69adf4ee7848564881d2 (patch)
tree9e6508e4dc42a9d9999f682b4115b4e4281f2ef7 /security
parent4ebbbe1b3ae6736a583a40f5d2f2cc75262cc1e3 (diff)
downloadports-5fc8ca7d8ca12c8cff6f69adf4ee7848564881d2.tar.gz
ports-5fc8ca7d8ca12c8cff6f69adf4ee7848564881d2.zip
- Fix permission violation on ${PREFIX}/bin
Noticed by: kris
Notes
Notes: svn path=/head/; revision=123776
Diffstat (limited to 'security')
-rw-r--r--security/pwauth/Makefile5
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>