texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Tue Jul 24 10:53:01 EDT 2007)


From: Karl Berry
Subject: texinfo update (Tue Jul 24 10:53:01 EDT 2007)
Date: Tue, 24 Jul 2007 10:53:04 -0400

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.738
retrieving revision 1.739
diff -u -r1.738 -r1.739
--- ChangeLog   23 Jul 2007 17:15:33 -0000      1.738
+++ ChangeLog   24 Jul 2007 14:50:54 -0000      1.739
@@ -1,3 +1,9 @@
+2007-07-24  Karl Berry  <address@hidden>
+
+       * util/texi2dvi (move_to_dest): really move the file,
+       don't just copy it, else automake tests fail.
+       From Michael Deutschmann, 23 Jul 2007 20:55:32.
+
 2007-07-23  Karl Berry  <address@hidden>
 
        * doc/texinfo.tex (license notice): punctuation changes to
Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- util/texi2dvi       23 Jul 2007 13:28:37 -0000      1.102
+++ util/texi2dvi       24 Jul 2007 14:50:55 -0000      1.103
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.102 2007/07/23 13:28:37 akim Exp $
+# $Id: texi2dvi,v 1.103 2007/07/24 14:50:55 karl Exp $
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
 # 2002, 2003, 2004, 2005, 2006, 2007 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.102 $'
+rcs_revision='$Revision: 1.103 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 version="texi2dvi (GNU Texinfo 4.9) $rcs_version
@@ -552,8 +552,8 @@
         testdest="$dest"
       fi
       if cmp -s "$file" "$testdest"; then :; else
-        verbose "Copying $file to $dest"
-        cp -p "$file" "$dest"
+        verbose "Moving $file to $dest"
+        mv "$file" "$dest"
       fi
     fi
   done
P ChangeLog
P util/texi2dvi




reply via email to

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