summaryrefslogtreecommitdiff
path: root/archivers/bzip2/Makefile
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1998-08-29 01:55:31 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1998-08-29 01:55:31 +0000
commitf14be451927f388088c6db64482a2e2719489d2a (patch)
tree38e83148ab579cf1285d9352bf1f5caf764e320c /archivers/bzip2/Makefile
parentFor some reason two manpages were missing from the MANx variables. (diff)
ln -> ${LN}
Use symbolic link instead of hard link.
Notes
Notes: svn path=/head/; revision=12904
Diffstat (limited to '')
-rw-r--r--archivers/bzip2/Makefile6
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>