]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* automake.in (handle_texinfo): Change numbering scheme for
authorTom Tromey <tromey@redhat.com>
Thu, 22 Apr 1999 21:58:17 +0000 (21:58 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 22 Apr 1999 21:58:17 +0000 (21:58 +0000)
stamp-vti files, to avoid problems with DOS.
From Michel de Ruiter.

ChangeLog
automake.in

index c64b0d36a4634e9094af5d19362b1fa61b194207..1140866873b253b2358a4bb57d85a1889d2a6506 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 1999-04-22  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_texinfo): Change numbering scheme for
+       stamp-vti files, to avoid problems with DOS.
+       From Michel de Ruiter.
+
        * automake.texi: Don't mention AM_FUNC_MKTIME.
        * aclocal.in (obsolete_macros): Mention AM_FUNC_MKTIME.
        * automake.in (scan_one_configure_file): Recognize
index b46d69442e106a9b08badee6e147b3220764a67a..9a9fbbfe2e0f78a9546263b2f2db75d8ee6a0713 100755 (executable)
@@ -2048,7 +2048,7 @@ sub handle_texinfo
            # We number the stamp-vti files.  This is doable since the
            # actual names don't matter much.  We only number starting
            # with the second one, so that the common case looks nice.
-           $vti = 'vti' . ($done ? $done : '');
+           $vti = ($done ? $done : 'vti');
            &push_dist_common ($vtexi, 'stamp-' . $vti);
            push (@clean, $vti);