diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-01-24 12:16:53 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-01-24 12:16:53 +0000 |
commit | e91ccdae029ccb1c40c9914ba9ed39f5ae42fb6c (patch) | |
tree | 440943f1bc7667867cdc8fcb4441f319ba665acb /net/bb | |
parent | 64e5bbde17247d892d17efc45bf8559e86b8bc36 (diff) |
"ln -s" -> "ln -sf".
Notes
Notes:
svn path=/head/; revision=5428
Diffstat (limited to 'net/bb')
-rw-r--r-- | net/bb/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/bb/Makefile b/net/bb/Makefile index eba8821403d5..01fe7946b0d4 100644 --- a/net/bb/Makefile +++ b/net/bb/Makefile @@ -3,7 +3,7 @@ # Date created: So 17 Nov 1996 16:59:23 MET # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.10 1997/01/20 11:46:00 andreas Exp $ +# $Id: Makefile,v 1.11 1997/01/23 22:05:43 andreas Exp $ # DISTNAME= bb @@ -126,9 +126,9 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/www/logs/later \ ${PREFIX}/${DISTNAME}/www/logs/later @${RM} -f ${PREFIX}/www/data/bb - @ln -s ${PREFIX}/${DISTNAME}/www ${PREFIX}/www/data/bb - @ln -s bb.html ${PREFIX}/${DISTNAME}/www/index.html - @ln -s ${PREFIX}/${DISTNAME}/bin/bb-page.sh ${PREFIX}/www/cgi-bin + @ln -sf ${PREFIX}/${DISTNAME}/www ${PREFIX}/www/data/bb + @ln -sf bb.html ${PREFIX}/${DISTNAME}/www/index.html + @ln -sf ${PREFIX}/${DISTNAME}/bin/bb-page.sh ${PREFIX}/www/cgi-bin @echo "" @echo "================================================================" @echo "==== Configuration Notes: ===" |