diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2002-03-06 18:35:57 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2002-03-06 18:35:57 +0000 |
commit | 809623c9634820db9bfe380c1d2fa19ca39b97b7 (patch) | |
tree | cff0575264001f58efdb61536d0397e9c7e89be9 /maintainer-scripts | |
parent | a2877a097789cdc98b8631ef0a2818137fbe3c67 (diff) | |
download | gcc-809623c9634820db9bfe380c1d2fa19ca39b97b7.zip gcc-809623c9634820db9bfe380c1d2fa19ca39b97b7.tar.gz gcc-809623c9634820db9bfe380c1d2fa19ca39b97b7.tar.bz2 |
update_version: Don't indent the version string.
2002-03-06 Phil Edwards <pme@gcc.gnu.org>
* update_version: Don't indent the version string.
From-SVN: r50364
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 4 | ||||
-rwxr-xr-x | maintainer-scripts/update_version | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index b3b0cf5..0d25f0c 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -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. diff --git a/maintainer-scripts/update_version b/maintainer-scripts/update_version index 2b3362e..de8ef9f 100755 --- a/maintainer-scripts/update_version +++ b/maintainer-scripts/update_version @@ -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" |