From: gerald Date: Thu, 25 Mar 2004 10:57:50 +0000 (+0000) Subject: * gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=bfff33107ffa177eafaadd1891310f839eeef6ce * 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 --- 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 + + * gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and + only set at a single place. + 2004-03-14 Gerald Pfeifer * 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