summaryrefslogtreecommitdiff
path: root/archivers/bzip
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1996-10-15 19:56:29 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1996-10-15 19:56:29 +0000
commitf75d0d0a89e35316157c99c27acb4816986b95ab (patch)
tree09b87e986746fe0eaeb1c15807b5f9375931702c /archivers/bzip
parentRemove PREFIX=/usr/X11R6, it is already the default if USE_IMAKE (or (diff)
Satoshi, the loard of the ports collection spoke:
"The last argument to the "rm -f" line should be bunzip, right? :) Also, you may want to change the "ln" to "ln -s". I remember the pkg tools mangling hard links into separate files." So I did it ;-) Submitted by: Satoshi
Notes
Notes: svn path=/head/; revision=3987
Diffstat (limited to 'archivers/bzip')
-rw-r--r--archivers/bzip/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/bzip/Makefile b/archivers/bzip/Makefile
index 04a11bd976d8..7c757511aee3 100644
--- a/archivers/bzip/Makefile
+++ b/archivers/bzip/Makefile
@@ -3,7 +3,7 @@
# Date created: Fr 27 Sep 1996 11:47:35 MET DST
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
#
-# $Id: Makefile,v 1.2 1996/09/27 20:55:50 andreas Exp $
+# $Id: Makefile,v 1.3 1996/09/28 12:34:36 andreas Exp $
#
DISTNAME= bzip-0.21
@@ -18,9 +18,9 @@ pre-install:
@cat ${FILESDIR}/COPYRIGHT
do-install:
- rm -f ${PREFIX}/bin/bzip ${PREFIX}/bin/bzip
+ rm -f ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip
${INSTALL_PROGRAM} ${WRKSRC}/bzip ${PREFIX}/bin/bzip
- ln ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip
+ ln -s ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip
${INSTALL_MAN} ${WRKSRC}/bzip.1 ${PREFIX}/man/man1/bzip.1
${INSTALL_MAN} ${WRKSRC}/bzip.1 ${PREFIX}/man/man1/bunzip.1
.if !defined(NOMANCOMPRESS)