diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-06-16 11:00:19 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 1997-06-16 11:00:19 +0000 |
commit | d6ae6dc467c4288e87cd6f99c161c01b2683ffc8 (patch) | |
tree | e1ddba9eb6124f211c7f4cb7c8ceb727f02f436c /shells/bash1 | |
parent | 3ffd020bff8351075e1db14de46e351f2b06002c (diff) |
Use install-info to edit the dir file.
The (now old) master_site doesn&t have bash-1.14.7 anymore, but GNU sites do,
so update it.
Notes
Notes:
svn path=/head/; revision=6963
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 d8e89d322f6d..0520f0d41584 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> |