diff options
author | kris <kris@FreeBSD.org> | 2000-08-15 09:42:12 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-08-15 09:42:12 +0000 |
commit | 371757663aa6d61b81aa5234dd67313feeaccd78 (patch) | |
tree | f8640b048a56f1622d787f2f6f3adf00d18dd270 /etc/Makefile | |
parent | acbf201b3b756fc575d6ddb79b06e19a8f04bcaa (diff) | |
download | FreeBSD-src-371757663aa6d61b81aa5234dd67313feeaccd78.zip FreeBSD-src-371757663aa6d61b81aa5234dd67313feeaccd78.tar.gz |
Install /var/crash/minfree mode 644 instead of 664 - group wheel shouldn't
have special write permissions to things.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index 5fef3bf..cd6eef2 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -138,7 +138,7 @@ distribution: ${DESTDIR}/var/log/wtmp ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ ${DESTDIR}/var/run/utmp - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${.CURDIR}/minfree \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \ ${DESTDIR}/var/crash (cd ${.CURDIR}/..; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FREEBSD} \ |