aboutsummaryrefslogtreecommitdiff
path: root/maintainer-scripts/gcc_release
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2004-04-19 21:48:46 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2004-04-19 21:48:46 +0000
commit8e48104da7b58c9e2bf898c2ec9653145bd86a8d (patch)
tree1adfd53ce0bbf89e384c53aa6732142160e45ef1 /maintainer-scripts/gcc_release
parentd2beeae7edf9bab9dca38a5c4f380ba963fbacc2 (diff)
downloadgcc-8e48104da7b58c9e2bf898c2ec9653145bd86a8d.zip
gcc-8e48104da7b58c9e2bf898c2ec9653145bd86a8d.tar.gz
gcc-8e48104da7b58c9e2bf898c2ec9653145bd86a8d.tar.bz2
* gcc_release (build_sources): Do not use "-F" to tag sources.
From-SVN: r80867
Diffstat (limited to 'maintainer-scripts/gcc_release')
-rwxr-xr-xmaintainer-scripts/gcc_release5
1 files changed, 4 insertions, 1 deletions
diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release
index 3ac73da..313a37f 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