diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-04 17:25:31 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-04 17:25:31 +0000 |
commit | 9656fddbb9f6e901d55b401da653e7dbab23568b (patch) | |
tree | fe17ed871defaed39ee009bc7e3d232086a7f3cc /maintainer-scripts | |
parent | e6215f1e36397ebf62deb9fc1450dd3892c693a5 (diff) | |
download | gcc-9656fddbb9f6e901d55b401da653e7dbab23568b.tar.gz |
* gcc_release: Execute gcc.gnu.org-only operations which are
related to diff generation only if diffs have been requested.
(build_sources): Improve tracing and an error message related
to tagging.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68924 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 7 | ||||
-rwxr-xr-x | maintainer-scripts/gcc_release | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index 30253f69ed3..79c0170cea1 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,10 @@ +2003-07-04 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * gcc_release: Execute gcc.gnu.org-only operations which are + related to diff generation only if diffs have been requested. + (build_sources): Improve tracing and an error message related + to tagging. + 2003-07-01 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * gcc_release (BRANCH): Rename to... diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 41fbfa98afb..558cd796225 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -158,9 +158,9 @@ EOF # Tag the sources. if [ -n "${TAG}" ]; then - inform "Tagging release sources" + inform "Tagging sources as ${TAG}" ${CVS} rtag -r ${CVSBRANCH} -F ${TAG} gcc || \ - error "Could not tag release sources" + error "Could not tag sources" CVSBRANCH=$TAG fi @@ -571,7 +571,7 @@ else # Building locally on gcc.gnu.org, we know what the last snapshot date # was. - if [ $LOCAL -ne 0 ]; then + if [ $MODE_DIFFS -ne 0 ] && [ $LOCAL -ne 0 ]; then LAST_DATE=`cat ~/.snapshot_date-${BRANCH}` LAST_LONG_DATE=`date --date=$LAST_DATE +%Y-%m-%d` LAST_DIR=~ftp/pub/gcc/snapshots/${LAST_LONG_DATE} |