diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-02-06 20:05:39 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-02-06 20:05:39 +0400 |
commit | a2de958c0dc8236d0fd71557fd54a681ec725dac (patch) | |
tree | 34c2f6dbea8b0fd1b89b85f5b63426d695d19900 /debian/patches/replace-texi2html-with-makeinfo | |
parent | f4eae5a92bd43056b210ddc6abe9e6ded41cb1a7 (diff) | |
download | zsh-master.tar.gz |
zsh (5.0.5-1+dyson1) unstable; urgency=mediumHEADdyson/5.0.5-1+dyson1master
* New upstream release
* Removed run-help.patch (use sed as in Debian)
* Added replace-texi2html-with-makeinfo (Debian)
* Refreshed solaris-shared.patch
* Updated build dependencies
* Set VCS fields to point to Dyson
* Updated invocation of helpfiles in d/rules
Diffstat (limited to 'debian/patches/replace-texi2html-with-makeinfo')
-rw-r--r-- | debian/patches/replace-texi2html-with-makeinfo | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/patches/replace-texi2html-with-makeinfo b/debian/patches/replace-texi2html-with-makeinfo new file mode 100644 index 0000000..c738c14 --- /dev/null +++ b/debian/patches/replace-texi2html-with-makeinfo @@ -0,0 +1,17 @@ +Description: Replace deprecated texi2html with makeinfo +Forwarded: http://www.zsh.org/mla/workers/2013/msg00723.html +Author: Axel Beckert <abe@debian.org> + +Index: zsh/Doc/Makefile.in +=================================================================== +--- zsh.orig/Doc/Makefile.in 2013-12-02 15:26:29.000000000 +0100 ++++ zsh/Doc/Makefile.in 2013-12-02 15:26:29.000000000 +0100 +@@ -41,7 +41,7 @@ + MAKEINFO = makeinfo + TEXI2DVI = texi2dvi + DVIPS = dvips +-TEXI2HTML = @TEXI2HTML@ --output . --ifinfo --split=chapter --node-files ++TEXI2HTML = makeinfo --html --output . --ifinfo --split=chapter --node-files + + .SUFFIXES: .yo .1 + |