diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-25 10:57:50 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-25 10:57:50 +0000 |
commit | bfff33107ffa177eafaadd1891310f839eeef6ce (patch) | |
tree | 548b40b247c54f20f67374e5b1039c65fcfd093b /maintainer-scripts | |
parent | 463c44f33f10ed99c53c9eb28191412278be3867 (diff) | |
download | gcc-bfff33107ffa177eafaadd1891310f839eeef6ce.tar.gz |
* gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and
only set at a single place.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79949 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 5 | ||||
-rwxr-xr-x | maintainer-scripts/gcc_release | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index 2646c80a4d9..43f5291405f 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,8 @@ +2004-03-25 Gerald Pfeifer <gerald@pfeifer.com> + + * gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and + only set at a single place. + 2004-03-14 Gerald Pfeifer <gerald@pfeifer.com> * gcc_release (SNAPSHOTS_DIR): New variable. Use it. diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 0b6340f18a7..f6259714dc5 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -440,9 +440,8 @@ CVS_USERNAME="${USER}" GCC_HOSTNAME="gcc.gnu.org" # The name of the account on the machine to which files are uploaded. GCC_USERNAME="gccadmin" -# The directory in which the files will be placed (must not use quotes -# or ~ftp syntax will break). -FTP_PATH=~ftp/pub/gcc +# The directory in which the files will be placed (do not use ~user syntax). +FTP_PATH=/var/ftp/pub/gcc # The directory in which snapshots will be placed. SNAPSHOTS_DIR=${FTP_PATH}/snapshots @@ -539,7 +538,6 @@ while getopts "d:fr:u:t:p:s:l" ARG; do ;; l) LOCAL=1 SCP=cp - FTP_PATH=~ftp/pub/gcc PATH=~:/usr/local/bin:$PATH;; p) OLD_TARS="${OLD_TARS} ${OPTARG}" if [ -d ${OPTARG} ]; then |