diff options
Diffstat (limited to 'shells/bash1')
-rw-r--r-- | shells/bash1/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/shells/bash1/Makefile b/shells/bash1/Makefile index d8e89d32..0520f0d 100644 --- a/shells/bash1/Makefile +++ b/shells/bash1/Makefile @@ -3,16 +3,22 @@ # Date created: 21 August 1994 # Whom: jkh # -# $Id: Makefile,v 1.22 1997/02/14 14:18:45 ache Exp $ +# $Id: Makefile,v 1.23 1997/02/17 06:41:50 obrien Exp $ # DISTNAME= bash-1.14.7 CATEGORIES= shells -MASTER_SITES= ftp://slc2.ins.cwru.edu/pub/dist/ +MASTER_SITES= ${MASTER_SITE_GNU} MAINTAINER= obrien@NUXI.com. WRKSRC= ${WRKDIR}/${DISTNAME} # Don't compress manpages or .so not works. +post-install: + @if [ ! -f ${PREFIX}/info/dir ]; then \ + ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ + fi + @install-info ${PREFIX}/info/bash.info ${PREFIX}/info/dir + .include <bsd.port.mk> |