summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-07-02 16:57:01 +0200
committerDan McGee <dan@archlinux.org>2012-07-10 15:36:20 +0200
commit5c1ba2d5fd5263525a0355cdce900b58dc41c916 (patch)
tree0ef777631e8da128786f90e4508b2509e42de285 /etc
parentd7c3164fd5824f1e300d2c7ee92f5c2446461c03 (diff)
downloadpacman-5c1ba2d5fd5263525a0355cdce900b58dc41c916.tar.gz
pacman-5c1ba2d5fd5263525a0355cdce900b58dc41c916.tar.xz
makepkg.conf: add -q option for curl
Avoid involving the user's ~/.curlrc file as this may alter the expected behavior of downloads. ref: https://bbs.archlinux.org/viewtopic.php?pid=1124441 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.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in
index dfdad646..a31a2135 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/curl -fC - --ftp-pasv --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'
+DLAGENTS=('ftp::/usr/bin/curl -qfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
+ 'http::/usr/bin/curl -qb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
+ 'https::/usr/bin/curl -qb "" -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')