* gcc_release (build_sources): Do not use "-F" to tag sources.
authorMark Mitchell <mark@codesourcery.com>
Mon, 19 Apr 2004 21:48:46 +0000 (21:48 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Mon, 19 Apr 2004 21:48:46 +0000 (21:48 +0000)
From-SVN: r80867

maintainer-scripts/ChangeLog
maintainer-scripts/gcc_release

index 7b4f157029c322e2eff5d750a739c46a2a44ec49..6f3dbd0ec2b87c5eebdd09a6bdbe974f531ef8b0 100644 (file)
@@ -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
index 3ac73da469f64190a38eed8ea9495f98a065a42a..313a37f8211210ad6c202fdc36108ca3120421cd 100755 (executable)
@@ -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