texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Sat Feb 16 18:23:01 EST 2008)


From: Karl Berry
Subject: texinfo update (Sat Feb 16 18:23:01 EST 2008)
Date: Sat, 16 Feb 2008 18:23:03 -0500

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.818
retrieving revision 1.819
diff -u -r1.818 -r1.819
--- ChangeLog   16 Feb 2008 19:19:36 -0000      1.818
+++ ChangeLog   16 Feb 2008 22:58:27 -0000      1.819
@@ -1,5 +1,8 @@
 2008-02-16  Karl Berry  <address@hidden>
 
+       * util/texi2dvi: path_sep is ; on mingw as well as cygwin.
+       Report from: FX Coudert, 16 Feb 2008 15:43:15.
+
        * makeinfo/cmds.c (cm_cite): avoid double apostrophe in
        Info output of, e.g., ... @cite{Foo}'s ...
        Report from Bob Chassell.
Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- util/texi2dvi       19 Jan 2008 23:19:08 -0000      1.107
+++ util/texi2dvi       16 Feb 2008 22:58:27 -0000      1.108
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.107 2008/01/19 23:19:08 karl Exp $
+# $Id: texi2dvi,v 1.108 2008/02/16 22:58:27 karl Exp $
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
 # 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
@@ -33,7 +33,7 @@
 set -e
 
 # This string is expanded by rcs automatically when this file is checked out.
-rcs_revision='$Revision: 1.107 $'
+rcs_revision='$Revision: 1.108 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 version="texi2dvi (GNU Texinfo 4.11) $rcs_version
@@ -177,7 +177,8 @@
 # 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
+if test -n "$COMSPEC$ComSpec" \
+   && uname | $EGREP -iv 'cygwin|mingw' >/dev/null; then
   path_sep=";"
 else
   path_sep=":"
P ChangeLog
P util/texi2dvi




reply via email to

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