diff options
author | andreas <andreas@FreeBSD.org> | 1996-10-15 19:56:29 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1996-10-15 19:56:29 +0000 |
commit | b9d6feeec524466ff8287d8fa3c513075f249ea5 (patch) | |
tree | 4da2dee7ce251f96f8b96b46ff358c9f6ea7070e /archivers | |
parent | 8a7b304118b7e8b6c39a97ee470d611a31a584ce (diff) | |
download | FreeBSD-ports-b9d6feeec524466ff8287d8fa3c513075f249ea5.zip FreeBSD-ports-b9d6feeec524466ff8287d8fa3c513075f249ea5.tar.gz |
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
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bzip/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/bzip/Makefile b/archivers/bzip/Makefile index 04a11bd..7c75751 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) |