diff options
author | Evangelos Foutras <evangelos@foutrelis.com> | 2021-09-15 16:52:54 +0300 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2021-11-16 22:49:44 +0100 |
commit | a23dcb039116670d3ec3203a278c852c3791ddef (patch) | |
tree | 0c66f3cc41c4affbe3b202f2e10f02c9412ea7e0 | |
parent | 7dd29dff46dc3396b7e97996ae3425a87e3cb661 (diff) | |
download | devtools-a23dcb039116670d3ec3203a278c852c3791ddef.tar.xz |
makepkg.conf: Sync with pacman 6.0.1-2: Pass -q as first option to curl
Includes the following hotfix:
> upgpkg: pacman 6.0.1-2: makepkg.conf: Pass -q as the first option to curl
>
> This is needed to disable reading the curlrc config file (if it exists).
>
> Same change submitted to upstream pacman:
> https://lists.archlinux.org/pipermail/pacman-dev/2021-September/025348.html
-rw-r--r-- | makepkg-x86_64.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/makepkg-x86_64.conf b/makepkg-x86_64.conf index 4854c32..3aa7470 100644 --- a/makepkg-x86_64.conf +++ b/makepkg-x86_64.conf @@ -11,10 +11,10 @@ # #-- The download utilities that makepkg should use to acquire sources # Format: 'protocol::agent' -DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u' - 'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' - 'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' - 'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' +DLAGENTS=('file::/usr/bin/curl -qgC - -o %o %u' + 'ftp::/usr/bin/curl -qgfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' + 'http::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' + 'https::/usr/bin/curl -qgb "" -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') |