diff options
author | asami <asami@FreeBSD.org> | 1998-08-22 13:20:35 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-08-22 13:20:35 +0000 |
commit | 437a9412c4db2227c6d8aadc82bc57be9b0b1458 (patch) | |
tree | 6400219c919e1f384acce4fa72f10a5478084608 /mail/elm | |
parent | 50d207830e3558737aae8a08d15806767dbd1415 (diff) | |
download | FreeBSD-ports-437a9412c4db2227c6d8aadc82bc57be9b0b1458.zip FreeBSD-ports-437a9412c4db2227c6d8aadc82bc57be9b0b1458.tar.gz |
Make links correctly depending on NOMANCOMPRESS.
Diffstat (limited to 'mail/elm')
-rw-r--r-- | mail/elm/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/elm/Makefile b/mail/elm/Makefile index 44ed73b..68513a7 100644 --- a/mail/elm/Makefile +++ b/mail/elm/Makefile @@ -4,7 +4,7 @@ # Date created: 26 June 1995 # Whom: ache # -# $Id: Makefile,v 1.45 1998/07/23 22:58:27 ache Exp $ +# $Id: Makefile,v 1.46 1998/08/17 18:28:27 hoek Exp $ # DISTNAME= elm-2.4ME+43 @@ -34,6 +34,10 @@ post-install: ${INSTALL_DATA} \ ${FILESDIR}/elm.mimetypes ${PREFIX}/lib; \ fi +.if defined(NOMANCOMPRESS) ${LN} -f ${PREFIX}/man/man1/frm.1 ${PREFIX}/man/man1/nfrm.1 +.else + ${LN} -f ${PREFIX}/man/man1/frm.1.gz ${PREFIX}/man/man1/nfrm.1.gz +.endif .include <bsd.port.mk> |