diff options
author | tron <tron> | 2007-04-24 12:14:23 +0000 |
---|---|---|
committer | tron <tron> | 2007-04-24 12:14:23 +0000 |
commit | d389d58fb35f364f6c376a3ab7686d7e3b57a0ed (patch) | |
tree | 77cd45506a66a736817aefbb864f4ca01560f0bd /net | |
parent | bf4885260f88e0a11473c72f064aa7a001682469 (diff) | |
download | pkgsrc-d389d58fb35f364f6c376a3ab7686d7e3b57a0ed.tar.gz |
Fix incorrect permission (only warnings) reported by "checkperms".
Diffstat (limited to 'net')
-rw-r--r-- | net/gated/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/gated/Makefile b/net/gated/Makefile index f044a529d66..ef11d795426 100644 --- a/net/gated/Makefile +++ b/net/gated/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2007/04/24 12:06:18 tron Exp $ +# $NetBSD: Makefile,v 1.29 2007/04/24 12:14:23 tron Exp $ DISTNAME= gated-3-5-11 PKGNAME= gated-3.5.11 @@ -41,8 +41,11 @@ do-configure: ${RM} -f Config post-install: - cd ${WRKSRC}/doc && ${PAX} -rw -pe . ${PREFIX}/share/doc/gated + ${CHMOD} -w ${PREFIX}/bin/gdc ${PREFIX}/bin/ospf_monitor + cd ${WRKSRC}/doc && ${PAX} -rw . ${PREFIX}/share/doc/gated ${CHOWN} -R ${SHAREOWN} ${PREFIX}/share/doc/gated ${CHGRP} -R ${SHAREGRP} ${PREFIX}/share/doc/gated + ${FIND} ${PREFIX}/share/doc/gated -type f -print | \ + ${XARGS} ${CHMOD} -x .include "../../mk/bsd.pkg.mk" |