diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-04-16 10:17:23 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-04-16 10:17:23 +0000 |
commit | 6b617801d063906d54af5581578b26c3ab0e0e44 (patch) | |
tree | f8165238eb0fe58408b39a1bb4f126a7c560e480 | |
parent | 9961acc5662c5150d342162fad246fd1597c1029 (diff) | |
download | zsh-6b617801d063906d54af5581578b26c3ab0e0e44.tar.gz zsh-6b617801d063906d54af5581578b26c3ab0e0e44.tar.xz zsh-6b617801d063906d54af5581578b26c3ab0e0e44.zip |
26839: add --node-files option to texi2html
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Doc/.cvsignore | 2 | ||||
-rw-r--r-- | Doc/.distfiles | 2 | ||||
-rw-r--r-- | Doc/Makefile.in | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index cd6e8d71b..a05511264 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-04-16 Peter Stephenson <pws@csr.com> + * 26389: Doc/.cvsignore, Doc/.distfiles, Doc/Makefile.in: add + --node-files option to texi2html. + * Alexey I. Froloff: 26830: Completion/Unix/Command/_man: fix stripping of manual page suffixes. @@ -11553,5 +11556,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4650 $ +* $Revision: 1.4651 $ ***************************************************** diff --git a/Doc/.cvsignore b/Doc/.cvsignore index e0d03d922..0ef3b52f5 100644 --- a/Doc/.cvsignore +++ b/Doc/.cvsignore @@ -3,7 +3,7 @@ version.yo zsh*.1 zsh.texi zsh.info* -zsh*.html +*.html zsh.aux zsh.toc zsh.cp zsh.cps zsh.fn zsh.fns diff --git a/Doc/.distfiles b/Doc/.distfiles index 60a15be63..07263317c 100644 --- a/Doc/.distfiles +++ b/Doc/.distfiles @@ -15,7 +15,7 @@ DISTFILES_SRC=' DISTFILES_DOC=' zsh.info zsh.info-[0-9]* - zsh.html zsh_*toc.html zsh_[0-9]*.html + *.html zsh.dvi zsh.pdf ' diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 2c07dc101..c859c87c5 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -40,7 +40,7 @@ INSTALL = @INSTALL@ MAKEINFO = makeinfo TEXI2DVI = texi2dvi DVIPS = dvips -TEXI2HTML = texi2html --output . --ifinfo --split=chapter +TEXI2HTML = texi2html --output . --ifinfo --split=chapter --node-files .SUFFIXES: .yo .1 |