summaryrefslogtreecommitdiff
path: root/doc
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 /doc
parent3b8132704b9098c62abacf15a4d7270a56b841bc (diff)
downloadgroff-801b94b12b81e5fd3609e29fb0f00990224363ad.tar.gz
Call texi2dvi with correct makeinfo binary.
* doc/Makefile.in (.texinfo.dvi, .texinfo.pdf): Use $(MAKEINFO).
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.in6
1 files changed, 3 insertions, 3 deletions
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 $@