diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-09 15:05:41 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-09 15:05:41 +0000 |
commit | 2171dc3cd4e1a24c3112f859c80b832594bc0073 (patch) | |
tree | 52038d6888fa5c8d0738f826412d2065ee46a57c /maintainer-scripts/update_version | |
parent | 96189dbf6edfda06e79f6132de417d7c030dbbee (diff) | |
download | gcc-2171dc3cd4e1a24c3112f859c80b832594bc0073.tar.gz |
* update_version (ADD_BRANCHES): Add, set to MAIN and
tree-ssa-20020619-branch.
(BRANCHES): Always consider branches given by $ADD_BRANCHES.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66633 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts/update_version')
-rwxr-xr-x | maintainer-scripts/update_version | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/maintainer-scripts/update_version b/maintainer-scripts/update_version index 715f8b6645a..b8e8a1e7a5e 100755 --- a/maintainer-scripts/update_version +++ b/maintainer-scripts/update_version @@ -2,6 +2,7 @@ CVSROOT=${CVSROOT:-/cvs/gcc} IGNORE_BRANCHES='gcc-(2_95|3_0|3_1|3_2)-branch' +ADD_BRANCHES='HEAD tree-ssa-20020619-branch' # Run this from /tmp. export CVSROOT @@ -19,7 +20,7 @@ BRANCHES=`$CVS status -v gcc/ChangeLog \ | egrep 'gcc-[0-9]+_[0-9]+-branch$' \ | egrep -v $IGNORE_BRANCHES` # Always update the mainline. -BRANCHES="${BRANCHES} HEAD" +BRANCHES="${BRANCHES} ${ADD_BRANCHES}" # ARGS is passed to 'cvs co' CURR_DATE=`/bin/date +"%Y%m%d"` |