mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
81165fa536
PR: 8552 Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
21 lines
678 B
Plaintext
21 lines
678 B
Plaintext
--- Doc/Makefile.in.orig Sun Nov 1 01:00:48 1998
|
|
+++ Doc/Makefile.in Sun Nov 1 01:03:09 1998
|
|
@@ -65,7 +65,7 @@
|
|
$(TEXI2DVI) $(sdir)/zsh.texi
|
|
|
|
zsh.info: zsh.texi
|
|
- $(MAKEINFO) $(sdir)/zsh.texi; exit 0
|
|
+ $(MAKEINFO) --no-split $(sdir)/zsh.texi; exit 0
|
|
|
|
zsh.texi: zsh.yo
|
|
$(YODL) -o $(sdir)/zsh.texi -I$(sdir) -w ztexi.yo version.yo zsh.yo
|
|
@@ -133,7 +133,7 @@
|
|
# install info pages, creating install directory if necessary
|
|
install.info: zsh.info
|
|
$(sdir_top)/mkinstalldirs $(infodir)
|
|
- for file in zsh.info zsh.info-[1-9]; do \
|
|
+ for file in zsh.info ; do \
|
|
if test -f $$file; then \
|
|
$(INSTALL_DATA) $$file $(infodir); \
|
|
elif test -f $(sdir)/$$file; then \
|