mirror of git://gcc.gnu.org/git/gcc.git
* gcc_release (build_sources): Do not use "-F" to tag sources.
From-SVN: r80867
This commit is contained in:
parent
d2beeae7ed
commit
8e48104da7
|
|
@ -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>
|
2004-04-07 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* gcc_release (build_sources): Do not use "-r" and "-D" at the
|
* gcc_release (build_sources): Do not use "-r" and "-D" at the
|
||||||
|
|
|
||||||
|
|
@ -160,7 +160,10 @@ EOF
|
||||||
EXPORTDATE=""
|
EXPORTDATE=""
|
||||||
if [ -n "${TAG}" ]; then
|
if [ -n "${TAG}" ]; then
|
||||||
inform "Tagging sources as ${TAG}"
|
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"
|
error "Could not tag sources"
|
||||||
EXPORTTAG="-r${TAG}"
|
EXPORTTAG="-r${TAG}"
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue