/etc/termcap is now created as a symlink to /usr/share/misc/termcap,

fixed creation of link for /etc/localtime.
This commit is contained in:
Rodney W. Grimes 1993-08-12 14:51:09 +00:00
parent 3b3837db61
commit 853f272a0a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286

View File

@ -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; \