aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1993-08-12 14:51:09 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1993-08-12 14:51:09 +0000
commit853f272a0a7e94f7c039d77d55ee529984bf3111 (patch)
treee8dd00cda530b2decd222b1f23d93ac824c02025 /etc
parent3b3837db6156b3b3d355adb052306a051ea503b8 (diff)
Notes
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/Makefile b/etc/Makefile
index b0d69ab685bb..2cfe69b6e9c9 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -151,6 +151,11 @@ distribution: distrib-dirs
(cd ../; \
install -c -o root -g wheel -m 444 ${FREEBSD} ${DESTDIR}/)
(cd ..; make install)
+ # the above make install clobers the /etc/localtime link
+ /bin/rm -f ${DESTDIR}/etc/localtime
+ ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
+ /bin/rm -f ${DESTDIR}/etc/termcap
+ ln -s /usr/share/misc/termcap ${DESTDIR}/etc/termcap
(cd ../sys/compile; rm -rf GENERICISA)
(cd ../sys/i386/conf; config GENERICISA)
(cd ../sys/compile/GENERICISA; make depend; make all; \