update_version: Don't indent the version string.
authorPhil Edwards <pme@gcc.gnu.org>
Wed, 6 Mar 2002 18:35:57 +0000 (18:35 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Wed, 6 Mar 2002 18:35:57 +0000 (18:35 +0000)
2002-03-06  Phil Edwards  <pme@gcc.gnu.org>

* update_version:  Don't indent the version string.

From-SVN: r50364

maintainer-scripts/ChangeLog
maintainer-scripts/update_version

index b3b0cf5926ddb9f008e435efb295f14b2b5de79f..0d25f0c4f39c3a5480c3fea4a3e62743848220c0 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-06  Phil Edwards  <pme@gcc.gnu.org>
+
+       * update_version:  Don't indent the version string.
+
 2002-03-05  Joseph S. Myers  <jsm28@cam.ac.uk>
 
        * snapshot-README: Note that snapshots come from the 3.1 branch.
index 2b3362eb1fb6208981acc14c43b5f6c58e3818e5..de8ef9f2c04123818fe1bba024bf22d6bd778ae7 100755 (executable)
@@ -47,7 +47,7 @@ for BRANCH in $BRANCHES; do
     if test -f $file; then 
       OLD_VERSION=`/bin/cat $file`
       /bin/sed -e "s/\(.*\"[^ ]*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/" >${file} <<HERE
-        $OLD_VERSION
+$OLD_VERSION
 HERE
 
       COMMIT_FILES="$COMMIT_FILES $file"
@@ -58,7 +58,7 @@ HERE
     if test -f $file; then 
       OLD_VERSION=`/bin/cat $file`
       /bin/sed -e "s/\(#.*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/" >${file} <<HERE
-        $OLD_VERSION
+$OLD_VERSION
 HERE
 
       COMMIT_FILES="$COMMIT_FILES $file"