texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Thu Jan 20 09:52:01 EST 2005)


From: Karl Berry
Subject: texinfo update (Thu Jan 20 09:52:01 EST 2005)
Date: Thu, 20 Jan 2005 09:52:13 -0500

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.450
retrieving revision 1.451
diff -c -r1.450 -r1.451
*** ChangeLog   17 Jan 2005 00:25:15 -0000      1.450
--- ChangeLog   20 Jan 2005 14:43:30 -0000      1.451
***************
*** 1,3 ****
--- 1,8 ----
+ 2005-01-20  Karl Berry  <address@hidden>
+ 
+       * util/texi2dvi (findprog): make sure test -x isn't returning true
+       for a directory.  From Stepan and others, 20 Jan 2005 12:35:08 +0100.
+ 
  2005-01-16  Torsten Bronger <address@hidden>
  
        * makeinfo/insertion.c (handle_verbatim_environment): do HTML
Index: util/texi2dvi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.35
retrieving revision 1.36
diff -c -r1.35 -r1.36
*** util/texi2dvi       31 Dec 2004 21:43:12 -0000      1.35
--- util/texi2dvi       20 Jan 2005 14:43:30 -0000      1.36
***************
*** 1,6 ****
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.35 2004/12/31 21:43:12 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004 Free Software Foundation, Inc.
--- 1,6 ----
  #! /bin/sh
  # texi2dvi --- produce DVI (or PDF) files from Texinfo (or LaTeX) sources.
! # $Id: texi2dvi,v 1.36 2005/01/20 14:43:30 karl Exp $
  #
  # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
  # 2002, 2003, 2004 Free Software Foundation, Inc.
***************
*** 27,33 ****
  # the `--debug' option when making a bug report.
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.35 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
--- 27,33 ----
  # the `--debug' option when making a bug report.
  
  # This string is expanded by rcs automatically when this file is checked out.
! rcs_revision='$Revision: 1.36 $'
  rcs_version=`set - $rcs_revision; echo $2`
  program=`echo $0 | sed -e 's!.*/!!'`
  version="texi2dvi (GNU Texinfo 4.8) $rcs_version
***************
*** 120,126 ****
  findprog () {
    foundprog=false
    for dir in `echo $PATH | tr "$path_sep" " "`; do
!     if test -x "$dir/$1"; then  # does anyone still need test -f?
        foundprog=true
        break
      fi
--- 120,129 ----
  findprog () {
    foundprog=false
    for dir in `echo $PATH | tr "$path_sep" " "`; do
!     # use test -x rather than test -f for DJGPP, where test -x checks
!     # for .exe.  But test -x will also return true for directories, so
!     # explicitly ignore those.
!     if test -x "$dir/$1" && test ! -d "$dir/$1"; then
        foundprog=true
        break
      fi
P ChangeLog
P util/texi2dvi


reply via email to

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