diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-19 21:48:46 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-19 21:48:46 +0000 |
commit | 4809fa38ed848d1d128e31e4ec4b5016d3dbb0e2 (patch) | |
tree | 1adfd53ce0bbf89e384c53aa6732142160e45ef1 /maintainer-scripts | |
parent | 004cc9eecb2d7ee5d0334008375b7551382785f3 (diff) | |
download | gcc-4809fa38ed848d1d128e31e4ec4b5016d3dbb0e2.tar.gz |
* gcc_release (build_sources): Do not use "-F" to tag sources.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80867 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 4 | ||||
-rwxr-xr-x | maintainer-scripts/gcc_release | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index 7b4f157029c..6f3dbd0ec2b 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,7 @@ +2004-04-19 Mark Mitchell <mark@codesourcery.com> + + * gcc_release (build_sources): Do not use "-F" to tag sources. + 2004-04-07 Mark Mitchell <mark@codesourcery.com> * gcc_release (build_sources): Do not use "-r" and "-D" at the diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 3ac73da469f..313a37f8211 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -160,7 +160,10 @@ EOF EXPORTDATE="" if [ -n "${TAG}" ]; then inform "Tagging sources as ${TAG}" - ${CVS} rtag -r ${CVSBRANCH} -F ${TAG} gcc || \ + # The -F option to CVS is intentionally not used below. If you + # need to retry a release, you will have to manually remove any + # existing tag. + ${CVS} rtag -r ${CVSBRANCH} ${TAG} gcc || \ error "Could not tag sources" EXPORTTAG="-r${TAG}" else |