From: Gerald Pfeifer Date: Thu, 25 Mar 2004 10:57:50 +0000 (+0000) Subject: gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and only set at a single place. X-Git-Tag: releases/gcc-4.0.0~9163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32f4b1ed217cab26a80f94473ae2a8c610607efe;p=thirdparty%2Fgcc.git gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and only set at a single place. * gcc_release (FTP_PATH): Use /var/ftp instead of ~ftp, and only set at a single place. From-SVN: r79949 --- diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index 2646c80a4d96..43f5291405f4 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 0b6340f18a7a..f6259714dc56 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