diff options
author | Dave Reisner <d@falconindy.com> | 2011-03-16 22:56:14 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-23 20:37:20 -0500 |
commit | ef26c445245d0d25dfbca8f6feb590d3288d76d4 (patch) | |
tree | 49e9c52ee17c8c4439f0c326795659a795a13304 /etc | |
parent | b9263fb4e1900457c9d5f3cc9e05896653130867 (diff) | |
download | pacman-ef26c445245d0d25dfbca8f6feb590d3288d76d4.tar.xz |
etc/makepkg.conf: use curl in place of wget as a DLAGENT
Signed-off-by: Dave Reisner <d@falconindy.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/makepkg.conf.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in index 286e2a84..c3b7cc09 100644 --- a/etc/makepkg.conf.in +++ b/etc/makepkg.conf.in @@ -8,9 +8,9 @@ # #-- The download utilities that makepkg should use to acquire sources # Format: 'protocol::agent' -DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u' - 'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u' - 'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u' +DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' + 'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u' + 'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u' 'rsync::/usr/bin/rsync -z %u %o' 'scp::/usr/bin/scp -C %u %o') |