summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwl <wl>2010-12-30 22:34:22 +0000
committerwl <wl>2010-12-30 22:34:22 +0000
commit801b94b12b81e5fd3609e29fb0f00990224363ad (patch)
tree63eedfa7a94e37aee322a4c77565993bc20881d8
parent3b8132704b9098c62abacf15a4d7270a56b841bc (diff)
downloadgroff-801b94b12b81e5fd3609e29fb0f00990224363ad.tar.gz
Call texi2dvi with correct makeinfo binary.
* doc/Makefile.in (.texinfo.dvi, .texinfo.pdf): Use $(MAKEINFO).
-rw-r--r--ChangeLog8
-rw-r--r--MANIFEST3
-rw-r--r--doc/Makefile.in6
3 files changed, 12 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d605e1f1..26dd3940 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,14 @@
2010-12-30 Werner LEMBERG <wl@gnu.org>
+ Call texi2dvi with correct makeinfo binary.
+
+ * doc/Makefile.in (.texinfo.dvi, .texinfo.pdf): Use $(MAKEINFO).
+
+2010-12-30 Werner LEMBERG <wl@gnu.org>
+
Documentation updates.
- * NEWS, PROBLEMS: Update.
+ * NEWS, PROBLEMS, MANIFEST: Update.
2010-12-26 Werner LEMBERG <wl@gnu.org>
diff --git a/MANIFEST b/MANIFEST
index ccdc59b9..ef0cc999 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
- Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2009
+ Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010
Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
@@ -90,6 +90,7 @@ the groff source distribution.
./src/include The *.h C/C++ include files.
./src/libs C++ code common to several parts of the groff sources.
+ gnulib Auxiliary functions copied from the `gnulib' repository.
libbib Library of bibliographic functions.
libdriver Parser for intermediate output and postprocessor code.
libgroff Library for general support functions used everywhere.
diff --git a/doc/Makefile.in b/doc/Makefile.in
index d8910d87..5f39e653 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -1,4 +1,4 @@
-# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2009
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010
# Free Software Foundation, Inc.
# Written by Werner Lemberg <wl@gnu.org>
#
@@ -99,9 +99,9 @@ imagedir=img
$(GROFF) -Tps -ms -mwww >$@
.texinfo.dvi:
- $(TEXI2DVI) -e $<
+ MAKEINFO=$(MAKEINFO) $(TEXI2DVI) -e $<
.texinfo.pdf:
- $(TEXI2DVI) -e --pdf $<
+ MAKEINFO=$(MAKEINFO) $(TEXI2DVI) -e --pdf $<
.texinfo.html:
$(MAKEINFO) --enable-encoding -I$(srcdir) --html --no-split $< \
&& $(SHELL) $(srcdir)/fixinfo.sh $@