diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-28 22:11:18 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-28 22:11:18 +0000 |
commit | 3674518f54f7f219b660a6cf206dd1e148587672 (patch) | |
tree | b1e5786db999b02285edab8f4dfec165f19869bb /maintainer-scripts | |
parent | 08b4f459aefdd66801a91b2f8cfe86402fbe1451 (diff) | |
download | gcc-3674518f54f7f219b660a6cf206dd1e148587672.tar.gz |
* gcc_release: Adjust placement of release candidates.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125149 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 4 | ||||
-rwxr-xr-x | maintainer-scripts/gcc_release | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index 8ef1fc4765b..79bc4a44441 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,7 @@ +2007-05-28 Mark Mitchell <mark@codesourcery.com> + + * gcc_release: Adjust placement of release candidates. + 2007-04-01 Gerald Pfeifer <gerald@pfeifer.com> * update_web_docs_svn (MANUALS): Move towards the top of the diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 5fe825e8463..bfaf2549223 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -699,10 +699,10 @@ if [ $SNAPSHOT -eq 0 ]; then # and minor release numbers. SVNBRANCH="branches/gcc-${RELEASE_MAJOR}_${RELEASE_MINOR}-branch" - # If this is not a final release, set various parameters acordingly. + # If this is not a final release, set various parameters accordingly. if [ ${FINAL} -ne 1 ]; then - RELEASE="${RELEASE}-${DATE}" - FTP_PATH="${FTP_PATH}/prerelease-${RELEASE}/" + RELEASE="${RELEASE}-RC-${DATE}" + FTP_PATH="${SNAPSHOTS_DIR}/${RELEASE}" else FTP_PATH="${FTP_PATH}/releases/gcc-${RELEASE}/" fi |