summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-03-28 20:22:18 -0400
committerDan McGee <dan@archlinux.org>2012-04-07 11:07:12 -0500
commitb5b9860a2e7f73b0445131a51006c8c95f1f1b91 (patch)
tree011112af2d7f03f6b0f6eded5c12be5d0af8cf2c /etc
parentc571bd7afbbe05449558d861a6ec82c559771739 (diff)
makepkg.conf: enable curl's cookie engine for http
Implements FS#28098. Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'etc')
-rw-r--r--etc/makepkg.conf.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in
index 6c87ea4c..d8117a37 100644
--- a/etc/makepkg.conf.in
+++ b/etc/makepkg.conf.in
@@ -9,8 +9,8 @@
#-- The download utilities that makepkg should use to acquire sources
# Format: 'protocol::agent'
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'
+ 'http::/usr/bin/curl -b "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
+ 'https::/usr/bin/curl -b "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
'rsync::/usr/bin/rsync --no-motd -z %u %o'
'scp::/usr/bin/scp -C %u %o')