diff options
author | Alec Warner <antarus@gentoo.org> | 2006-05-25 13:09:58 +0000 |
---|---|---|
committer | Alec Warner <antarus@gentoo.org> | 2006-05-25 13:09:58 +0000 |
commit | c6f09169e1a11d9903b30ce6043cbc48d67923e4 (patch) | |
tree | c2a013798fabf57b68f0ae1508c42ac81664b20a | |
parent | a34f9bdb5879e59adfbb9c14ab5afaedd115ca9d (diff) | |
download | portage-c6f09169e1a11d9903b30ce6043cbc48d67923e4.tar.gz portage-c6f09169e1a11d9903b30ce6043cbc48d67923e4.tar.bz2 portage-c6f09169e1a11d9903b30ce6043cbc48d67923e4.zip |
set a timeout on wget to 60 seconds to fix bug 101196; the old timeout was 15 minutes :/
svn path=/main/trunk/; revision=3412
-rw-r--r-- | cnf/make.globals | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cnf/make.globals b/cnf/make.globals index 3c6b806d5..227183626 100644 --- a/cnf/make.globals +++ b/cnf/make.globals @@ -29,8 +29,8 @@ RPMDIR=/usr/portage/rpm PORTAGE_TMPDIR=/var/tmp # Fetching command (5 tries, passive ftp for firewall compatibility) -FETCHCOMMAND="/usr/bin/wget -t 5 --passive-ftp -P \${DISTDIR} \${URI}" -RESUMECOMMAND="/usr/bin/wget -c -t 5 --passive-ftp -P \${DISTDIR} \${URI}" +FETCHCOMMAND="/usr/bin/wget -t 5 -T 60 --passive-ftp -P \${DISTDIR} \${URI}" +RESUMECOMMAND="/usr/bin/wget -c -t 5 -T 60 --passive-ftp -P \${DISTDIR} \${URI}" # Default user options FEATURES="sandbox distlocks metadata-transfer" |