diff options
author | max <max@FreeBSD.org> | 1997-06-16 11:51:14 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-06-16 11:51:14 +0000 |
commit | 82afc9a5be86f2731e8f29279f2fb767ded6d686 (patch) | |
tree | d4825977b07f422398b13ac0b210d5f742487f86 /shells/zsh/Makefile | |
parent | 25ab19110ca5aa081c1000a706182465ba37efb8 (diff) | |
download | FreeBSD-ports-82afc9a5be86f2731e8f29279f2fb767ded6d686.zip FreeBSD-ports-82afc9a5be86f2731e8f29279f2fb767ded6d686.tar.gz |
Use install-info to edit the dir file.
Diffstat (limited to 'shells/zsh/Makefile')
-rw-r--r-- | shells/zsh/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index 80d0c4a..279edf9 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -3,7 +3,7 @@ # Date created: 11 Feb. 1995 # Whom: torstenb # -# $Id: Makefile,v 1.22 1996/11/18 11:40:00 asami Exp $ +# $Id: Makefile,v 1.23 1996/12/19 11:31:20 torstenb Exp $ # DISTNAME= zsh-3.0.2 @@ -27,4 +27,10 @@ MAN1= zsh.1 zshbuiltins.1 zshcompctl.1 zshexpn.1 zshmisc.1 \ # If you want to build a static binary, uncomment the following line #LDFLAGS+=-static +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/zsh.info ${PREFIX}/info/dir + .include <bsd.port.mk> |