diff options
author | mtm <mtm@FreeBSD.org> | 2003-08-24 03:24:54 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2003-08-24 03:24:54 +0000 |
commit | 07a12aae6a522bfd3bcc1a1ed091691667053fe7 (patch) | |
tree | 94840d8da1216f4e461bf78dea1e0ce7476c834c /etc/defaults | |
parent | 3d5eea7bb5b8139fb5a9a9b660b2d244fc29c5d1 (diff) | |
download | FreeBSD-src-07a12aae6a522bfd3bcc1a1ed091691667053fe7.zip FreeBSD-src-07a12aae6a522bfd3bcc1a1ed091691667053fe7.tar.gz |
o Do not keep a separate list of src/etc/defaults files in
the src/etc makefile. This list was used to manually
install the files from src/etc. Instead, simply change
directory and 'make install'.
o There is no reason for the files in src/etc/defaults to
be installed as writeable.
Reviewed by: ru
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/defaults/Makefile b/etc/defaults/Makefile index 56e74ff..9e10092 100644 --- a/etc/defaults/Makefile +++ b/etc/defaults/Makefile @@ -3,6 +3,6 @@ FILES= devfs.rules pccard.conf periodic.conf rc.conf NOOBJ= noobj FILESDIR= /etc/defaults -FILESMODE= 644 +FILESMODE= 444 .include <bsd.prog.mk> |