diff options
author | Christian Hesse <mail@eworm.de> | 2020-03-26 07:16:31 +0100 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2021-01-26 20:56:46 +0100 |
commit | 00f7a6a415ee1f0e3fbb80eca833d84492fb8176 (patch) | |
tree | 2bd2a58f20bd76d51439ec8afef2fcc363f5ef4e | |
parent | 4f305aa31605de1171558edad58c413d2a47b5e7 (diff) | |
download | devtools32-00f7a6a415ee1f0e3fbb80eca833d84492fb8176.tar.xz |
makepkg.conf: make rsync use new-style compression in makepkg.conf
Our rsync package is no longer built with bundled zlib, so old-style
compression is no longer supported.
https://www.archlinux.org/news/rsync-compatibility/
Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r-- | makepkg-x86_64.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makepkg-x86_64.conf b/makepkg-x86_64.conf index a07756c..3a1384f 100644 --- a/makepkg-x86_64.conf +++ b/makepkg-x86_64.conf @@ -15,7 +15,7 @@ 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' - 'rsync::/usr/bin/rsync --no-motd -z %u %o' + 'rsync::/usr/bin/rsync --no-motd -zz %u %o' 'scp::/usr/bin/scp -C %u %o') # Other common tools: |