diff options
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bzip2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/bzip2/Makefile b/archivers/bzip2/Makefile index b424489bfe2d..ce583605ff9b 100644 --- a/archivers/bzip2/Makefile +++ b/archivers/bzip2/Makefile @@ -3,7 +3,7 @@ # Date created: 19 Nov 1997 # Whom: Thomas Gellekum <tg@FreeBSD.ORG> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/11/20 08:18:40 tg Exp $ # DISTNAME= bzip2-0.1pl2 @@ -18,9 +18,9 @@ MAN1= bzip2.1 bunzip2.1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bzip2 ${PREFIX}/bin - ln -sf ${PREFIX}/bin/bzip2 ${PREFIX}/bin/bunzip2 + ${LN} -sf ${PREFIX}/bin/bzip2 ${PREFIX}/bin/bunzip2 ${INSTALL_PROGRAM} ${WRKSRC}/bzip2recover ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/bzip2.1 ${PREFIX}/man/man1 - ln ${PREFIX}/man/man1/bzip2.1 ${PREFIX}/man/man1/bunzip2.1 + ${LN} -fs ${PREFIX}/man/man1/bzip2.1 ${PREFIX}/man/man1/bunzip2.1 .include <bsd.port.mk> |