Make links correctly depending on NOMANCOMPRESS.

This commit is contained in:
Satoshi Asami 1998-08-22 13:20:35 +00:00
parent e33fb5a4d2
commit 02d6163767
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=12716
2 changed files with 10 additions and 2 deletions

View File

@ -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>

View File

@ -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>