diff options
author | ache <ache@FreeBSD.org> | 1995-05-13 16:58:37 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-05-13 16:58:37 +0000 |
commit | 8eb426e0952b47c8bc117ea3d14c72eb9a4946fd (patch) | |
tree | 66004966b7b2387c21988144234b27f83713c501 /etc | |
parent | c44bccb7ffe519137a6b505619cf7a115c635ac6 (diff) | |
download | FreeBSD-src-8eb426e0952b47c8bc117ea3d14c72eb9a4946fd.zip FreeBSD-src-8eb426e0952b47c8bc117ea3d14c72eb9a4946fd.tar.gz |
Change ln -sf to rm -f and ln -s, first one work incorrectly
for directories when called second time
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index 7600ea1..7f259a4 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.114 1995/05/09 00:15:30 jkh Exp $ +# $Id: Makefile,v 1.115 1995/05/11 05:22:29 jkh Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -450,7 +450,8 @@ distrib-dirs: cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys cd ${DESTDIR}/usr/share/locale; \ for l in ${LATIN1LINKS} ; do \ - ln -sf lt_LN.ISO8859-1 $$l.ISO8859-1; \ + rm -f $$l.ISO8859-1; \ + ln -s lt_LN.ISO8859-1 $$l.ISO8859-1; \ done floppies: kcopy.flp filesyst.flp cpio.flp cdins.flp |