summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2018-05-02 21:32:58 -0400
committerAllan McRae <allan@archlinux.org>2018-05-14 09:58:16 +1000
commit9aec7c3c7225ec9a2ae1124eca612a709f7abddf (patch)
tree871505a0be85b3b07b86d184e3549c1bc341fa5e /etc
parent03272ad57142a1c7dacf1d9933d52650d3936225 (diff)
downloadpacman-9aec7c3c7225ec9a2ae1124eca612a709f7abddf.tar.xz
makepkg.conf: add default protocol handler for file:// urls.
This is a common URI scheme (in general if not in makepg) and we should provide a handler for it. We already allow its use for locally sourced git repositories, so it makes sense to not leave files out. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'etc')
-rw-r--r--etc/makepkg.conf.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/makepkg.conf.in b/etc/makepkg.conf.in
index fe3858ad..4d6ab78d 100644
--- a/etc/makepkg.conf.in
+++ b/etc/makepkg.conf.in
@@ -8,7 +8,8 @@
#
#-- The download utilities that makepkg should use to acquire sources
# Format: 'protocol::agent'
-DLAGENTS=('ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
+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'