texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Feb 11 08:52:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Fri Feb 11 08:52:01 EST 2005)
Date: Fri, 11 Feb 2005 08:52:15 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.463
retrieving revision 1.464
diff -c -r1.463 -r1.464
*** ChangeLog   11 Feb 2005 01:31:03 -0000      1.463
--- ChangeLog   11 Feb 2005 13:35:14 -0000      1.464
***************
*** 1,5 ****
--- 1,9 ----
  2005-02-10  Karl Berry  <address@hidden>
  
+       * util/texi2dvi (findprog): also check for foo.exe, for Cygwin.
+ 
+ 2005-02-10  Karl Berry  <address@hidden>
+ 
        * info/dir.c (dir_file_list_entry_type): use dev_t and ino_t
        instead of unsigned long.  (Breaks on cygwin.)  David Hunter
        bug-texinfo mail, 08 Feb 2005 23:05:37 -0500.  Paul Eggert says
Index: util/gendocs.sh
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/gendocs.sh,v
retrieving revision 1.14
retrieving revision 1.15
diff -c -r1.14 -r1.15
*** util/gendocs.sh     11 Jan 2005 22:06:56 -0000      1.14
--- util/gendocs.sh     11 Feb 2005 13:33:21 -0000      1.15
***************
*** 1,7 ****
  #!/bin/sh
  # gendocs.sh -- generate a GNU manual in many formats.  This script is
  #   mentioned in maintain.texi.  See the help message below for usage details.
! # $Id: gendocs.sh,v 1.14 2005/01/11 22:06:56 karl Exp $
  # 
  # Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
  #
--- 1,7 ----
  #!/bin/sh
  # gendocs.sh -- generate a GNU manual in many formats.  This script is
  #   mentioned in maintain.texi.  See the help message below for usage details.
! # $Id: gendocs.sh,v 1.15 2005/02/11 13:33:21 karl Exp $
  # 
  # Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
  #
***************
*** 39,50 ****
  : ${GENDOCS_TEMPLATE_DIR="."}
  unset CDPATH
  
! rcs_revision='$Revision: 1.14 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="gendocs.sh $rcs_version
  
! Copyright (C) 2003 Free Software Foundation, Inc.
  There is NO warranty.  You may redistribute this software
  under the terms of the GNU General Public License.
  For more information about these matters, see the files named COPYING."
--- 39,50 ----
  : ${GENDOCS_TEMPLATE_DIR="."}
  unset CDPATH
  
! rcs_revision='$Revision: 1.15 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="gendocs.sh $rcs_version
  
! Copyright (C) 2005 Free Software Foundation, Inc.
  There is NO warranty.  You may redistribute this software
  under the terms of the GNU General Public License.
  For more information about these matters, see the files named COPYING."
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.41
retrieving revision 1.42
diff -c -r1.41 -r1.42
*** util/texi2dvi       9 Feb 2005 19:14:52 -0000       1.41
--- util/texi2dvi       11 Feb 2005 13:35:14 -0000      1.42
***************
*** 1,6 ****
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.41 2005/02/09 19:14:52 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.42 2005/02/11 13:35:14 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.41 $'
  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.42 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 107,113 ****
  orig_pwd=`pwd`
  
  # Systems which define $COMSPEC or $ComSpec use semicolons to separate
! # directories in TEXINPUTS -- except for Cygwin, where it might be inherited.
  if test -n "$COMSPEC$ComSpec" && uname | grep -iv cygwin >/dev/null; then
    path_sep=";"
  else
--- 107,114 ----
  orig_pwd=`pwd`
  
  # Systems which define $COMSPEC or $ComSpec use semicolons to separate
! # directories in TEXINPUTS -- except for Cygwin, where COMSPEC might be
! # inherited, but : is used.
  if test -n "$COMSPEC$ComSpec" && uname | grep -iv cygwin >/dev/null; then
    path_sep=";"
  else
***************
*** 135,140 ****
--- 136,147 ----
      if test -x "$dir/$1" && test ! -d "$dir/$1"; then
        foundprog=true
        break
+ 
+     # But on cygwin, test -x foo will not find foo.exe.  So also check
+     # for that.
+     elif test -x "$dir/$1.exe"; then
+       foundprog=true
+       break      
      fi
    done
    IFS=$saveIFS
P ChangeLog
P util/gendocs.sh
P util/texi2dvi


reply via email to

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