diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-04-19 23:21:54 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-04-19 23:21:54 +0000 |
commit | 257fa95095b589e9c05177d4be29ec55c85beb1e (patch) | |
tree | 9cca1e738e0915916bb2efa9657bc103c3c3e35d | |
parent | o Add ${LOCALBASE}/sbin to PATH on installing to provide dpkg tools (diff) |
Create directories mode 755, not 775
Notes
Notes:
svn path=/head/; revision=79322
-rw-r--r-- | sysutils/msyslog/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/msyslog/Makefile b/sysutils/msyslog/Makefile index 15b2ac83385e..eed2063fb4cd 100644 --- a/sysutils/msyslog/Makefile +++ b/sysutils/msyslog/Makefile @@ -63,11 +63,11 @@ pre-patch: .endfor post-install: - ${INSTALL} -d -o root -g wheel -m 0775 ${PREFIX}/share/examples/msyslog + ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/share/examples/msyslog ${INSTALL_DATA} ${WRKSRC}/src/examples/* \ ${PREFIX}/share/examples/msyslog .if !defined(NOPORTDOCS) - ${INSTALL} -d -o root -g wheel -m 0775 ${DOCSDIR} + ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR} .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} .endfor |