texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Jun 10 09:52:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Fri Jun 10 09:52:01 EDT 2005)
Date: Fri, 10 Jun 2005 09:52:22 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.509
retrieving revision 1.510
diff -c -r1.509 -r1.510
*** ChangeLog   9 Jun 2005 22:07:13 -0000       1.509
--- ChangeLog   10 Jun 2005 13:44:47 -0000      1.510
***************
*** 1,3 ****
--- 1,8 ----
+ 2005-06-10  Akim Demaille  <address@hidden>
+ 
+       * util/texi2dvi (run_tex): Updating the output is also needed when
+       -o is used, not just when $tidy.
+ 
  2005-06-09  Akim Demaille  <address@hidden>
  
        * util/texi2dvi: Support --tidy, a new build mode which lets all the
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.53
retrieving revision 1.54
diff -c -r1.53 -r1.54
*** util/texi2dvi       9 Jun 2005 22:07:13 -0000       1.53
--- util/texi2dvi       10 Jun 2005 13:44:47 -0000      1.54
***************
*** 1,6 ****
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.53 2005/06/09 22:07:13 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
--- 1,6 ----
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.54 2005/06/10 13:44:47 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
***************
*** 32,38 ****
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.53 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
--- 32,38 ----
  unset RUNNING_KSH
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.54 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 81,92 ****
    -c, --clean   same as --build=clean
  
  The MODE specifies where the TeX compilation takes place, and, as a
! consequence, how auxiliary files are treated.  The default build mode
  can also be set using the environment variable TEXI2DVI_BUILD_MODE.
  
  Valid MODEs are:
    \`local'  compile in the current directory, leaving all the auxiliary
!              files around.  This is the default.
    \`tidy'   compile in a local *.t2d directory, where the auxiliary files
               are left.  Output files are copied back to the original file.
    \`clean'  same as \`tidy', but remove the auxiliary directory afterwards.
--- 81,92 ----
    -c, --clean   same as --build=clean
  
  The MODE specifies where the TeX compilation takes place, and, as a
! consequence, how auxiliary files are treated.  The build mode
  can also be set using the environment variable TEXI2DVI_BUILD_MODE.
  
  Valid MODEs are:
    \`local'  compile in the current directory, leaving all the auxiliary
!              files around.
    \`tidy'   compile in a local *.t2d directory, where the auxiliary files
               are left.  Output files are copied back to the original file.
    \`clean'  same as \`tidy', but remove the auxiliary directory afterwards.
***************
*** 349,360 ****
  
    verbose "Running $cmd ..."
    if eval "$cmd" >&5; then
!     if $tidy; then
!       # Update the actual output.
!       case $oname in
!       '') dest=$orig_pwd;;
!        *) dest=$oname;;
!       esac
        verbose "Copying $oformat file from `pwd` to $dest"
        cp -p "./$filename_noext.$oformat" "$dest"
      fi
--- 349,361 ----
  
    verbose "Running $cmd ..."
    if eval "$cmd" >&5; then
!     # Update the actual output.
!     case $tidy:$oname in
!       true:)  dest=$orig_pwd;;
!       false:) dest=;;
!       *:*)    dest=$oname;;
!     esac
!     if test -n "$dest"; then
        verbose "Copying $oformat file from `pwd` to $dest"
        cp -p "./$filename_noext.$oformat" "$dest"
      fi
P ChangeLog
P util/texi2dvi


reply via email to

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