diff options
author | wosch <wosch@FreeBSD.org> | 1996-08-17 22:27:08 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-08-17 22:27:08 +0000 |
commit | dfb9d51f1fa3983a90bb35d53cb7032bac50eed7 (patch) | |
tree | 4f2015370a9317d14c58aea6b35e379e210976a5 /etc | |
parent | 56678549f3565e8824ce4dac32419c580ada8a1c (diff) | |
download | FreeBSD-src-dfb9d51f1fa3983a90bb35d53cb7032bac50eed7.zip FreeBSD-src-dfb9d51f1fa3983a90bb35d53cb7032bac50eed7.tar.gz |
make install should not install any file in /etc.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index 088280e..dae9967 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.139 1996/07/13 04:33:23 jkh Exp $ +# $Id: Makefile,v 1.140 1996/08/14 14:41:56 jkh Exp $ # -rw-r--r-- BINOWN= root @@ -13,7 +13,8 @@ BIN1= aliases amd.map csh.cshrc csh.login csh.logout dm.conf \ remote security services sysconfig shells \ syslog.conf ttys etc.${MACHINE}/disktab rpc make.conf \ ${.CURDIR}/../gnu/usr.bin/man/manpath/manpath.config \ - ${.CURDIR}/../usr.bin/mail/misc/mail.rc + ${.CURDIR}/../usr.bin/mail/misc/mail.rc \ + ${.CURDIR}/../usr.bin/locate/locate/locate.rc # -rw-rw-rw- BIN2= motd @@ -26,6 +27,7 @@ NAMEDB= PROTO.localhost.rev named.boot named.root make-localhost PPPCNF= ppp.conf.filter.sample ppp.conf.iij ppp.conf.sample \ ppp.linkup.sample ppp.secret.sample + # Special top level files for FreeBSD COPYRIGHT= COPYRIGHT FREEBSD= @@ -55,6 +57,10 @@ distribution: ${DESTDIR}/var/cron/log; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 \ master.passwd ${DESTDIR}/etc; \ + ( cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall );\ + ( cd ${.CURDIR}/../gnu/libexec/uucp/sample; ${MAKE} install ); \ + ( cd ${.CURDIR}/../usr.bin/file; ${MAKE} etc-magic ); \ + ( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \ pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \ MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev ) |