texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog util/texi2dvi


From: Karl Berry
Subject: texinfo ChangeLog util/texi2dvi
Date: Sat, 27 Aug 2011 15:44:40 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       11/08/27 15:44:40

Modified files:
        .              : ChangeLog 
        util           : texi2dvi 

Log message:
        respect and document TEX4HT and T4HT envvars

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1248&r2=1.1249
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texi2dvi?cvsroot=texinfo&r1=1.165&r2=1.166

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1248
retrieving revision 1.1249
diff -u -b -r1.1248 -r1.1249
--- ChangeLog   27 Aug 2011 00:04:02 -0000      1.1248
+++ ChangeLog   27 Aug 2011 15:44:40 -0000      1.1249
@@ -1,3 +1,8 @@
+2011-08-27  Karl Berry  <address@hidden>
+
+       * util/texi2dvi (run_tex4ht): respect TEX4HT and T4HT envvars.
+       (usage): more help msg tweaks.
+
 2011-08-26  Karl Berry  <address@hidden>
 
        * util/texi2dvi (usage): we currently generate .ps with --ps,

Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -b -r1.165 -r1.166
--- util/texi2dvi       27 Aug 2011 00:04:02 -0000      1.165
+++ util/texi2dvi       27 Aug 2011 15:44:40 -0000      1.166
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.165 2011/08/27 00:04:02 karl Exp $
+# $Id: texi2dvi,v 1.166 2011/08/27 15:44:40 karl Exp $
 #
 # Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
 # 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
@@ -33,7 +33,7 @@
 set -e
 
 # This string is expanded automatically when this file is checked out.
-rcs_revision='$Revision: 1.165 $'
+rcs_revision='$Revision: 1.166 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 
@@ -391,10 +391,11 @@
 using \\graphicspath): in that case use -I to specify the additional
 directories to consider.
 
-The values of the BIBTEX, DVIPDF, DVIPS, LATEX, MAKEINDEX, MAKEINFO,
-PDFLATEX, PDFTEX, TEX, TEXINDEX, and THUMBPDF environment variables are used
-to run those commands, if they are set.  Any CMD strings are added after
address@hidden for Texinfo input, in the first line for LaTeX input.
+The values of the BIBTEX, DVIPDF, DVIPS, HEVEA, LATEX, MAKEINDEX,
+MAKEINFO, PDFLATEX, PDFTEX, T4HT, TEX, TEX4HT, TEXINDEX, and THUMBPDF
+environment variables are used to run those commands, if they are set.
+Any CMD strings are added after @setfilename for Texinfo input, or in
+the first line for LaTeX input.
 
 Report bugs to address@hidden,
 general questions and discussion to address@hidden
@@ -1162,7 +1163,7 @@
 {
   case $in_lang:$latex2html:`out_lang_tex` in
     latex:tex4ht:html)
-      : ${TEX4HT=tex4ht} ${T4HT=t4ht}
+      : ${TEX4HT:=tex4ht} ${T4HT:=t4ht}
       run "$TEX4HT" "-f/$in_noext"
       # Do not remove the / after the destdir.
       run "$T4HT" "-d`destdir`/" "-f/$in_noext"
@@ -1268,7 +1269,7 @@
       ;;
     *:ps)
       : ${DVIPS:=dvips}
-      $DVIPS -o "$in_noext.`out_lang_ext`" "$in_noext.`out_lang_tex`"
+      run $DVIPS -o "$in_noext.`out_lang_ext`" "$in_noext.`out_lang_tex`"
       move_to_dest "$in_noext.`out_lang_ext`"
       ;;
   esac



reply via email to

[Prev in Thread] Current Thread [Next in Thread]