diff options
author | jtb <jtb> | 2001-05-24 14:54:22 +0000 |
---|---|---|
committer | jtb <jtb> | 2001-05-24 14:54:22 +0000 |
commit | 7ab02c62a1890f6c3a985cb56c472311cdbef946 (patch) | |
tree | f64d8dbcade768b6e07361e58346299388319e65 /shells | |
parent | da3e323d3735f97674d2d5051c3420fbe97c6b49 (diff) | |
download | pkgsrc-7ab02c62a1890f6c3a985cb56c472311cdbef946.tar.gz |
Pass --no-split option to makeinfo. Reported to packages@netbsd.org
by Masao Uebayashi.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/zsh-current/distinfo | 3 | ||||
-rw-r--r-- | shells/zsh-current/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/shells/zsh-current/distinfo b/shells/zsh-current/distinfo index b11035d1617..5bc9bf311a3 100644 --- a/shells/zsh-current/distinfo +++ b/shells/zsh-current/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2001/05/18 20:31:19 jtb Exp $ +SHA1 (patch-aa) = f15ea2152b94b0eb21dcb972a30229c99e9c1d4f SHA1 (zsh-3.1.9.tar.gz) = 0248f047aa47933582706a49cd4d1404f14642f3 Size (zsh-3.1.9.tar.gz) = 1858071 bytes +SHA1 (patch-aa) = f15ea2152b94b0eb21dcb972a30229c99e9c1d4f diff --git a/shells/zsh-current/patches/patch-aa b/shells/zsh-current/patches/patch-aa new file mode 100644 index 00000000000..67379eac2bf --- /dev/null +++ b/shells/zsh-current/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2001/05/24 14:54:22 jtb Exp $ + +--- Doc/Makefile.in.orig Thu May 24 14:49:25 2001 ++++ Doc/Makefile.in +@@ -261,7 +261,7 @@ + if ( \ + sed '/^@setfilename/s|zsh|$(tzsh)|' \ + < $(sdir)/zsh.texi > infodir/tzsh.texi && \ +- (cd infodir && $(MAKEINFO) tzsh.texi) && \ ++ (cd infodir && $(MAKEINFO) --no-split tzsh.texi) && \ + for file in infodir/$(tzsh).info*; do \ + $(INSTALL_DATA) $$file $(DESTDIR)$(infodir) || exit 1; \ + done \ |