diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-04-19 13:48:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-04-19 13:48:57 +0000 |
commit | c6f4cb7286ab7511460652fc3d671542557189a2 (patch) | |
tree | 4db1ed2863e6fff71cc6ddb1073fbd5d60d09f2a | |
parent | 9ce1d679109ce0a0a0e24366575444414295e57a (diff) | |
download | abuild-c6f4cb7286ab7511460652fc3d671542557189a2.tar.bz2 abuild-c6f4cb7286ab7511460652fc3d671542557189a2.tar.xz |
abuild: use fetch_uri_mirror when downloading sources
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -192,7 +192,7 @@ default_fetch() { mkdir -p "$srcdir" for s in $source; do if is_remote "$s"; then - uri_fetch "$s" || return 1 + uri_fetch_mirror "$s" || return 1 ln -sf "$SRCDEST/${s##*/}" "$srcdir"/ else ln -sf "$startdir/$s" "$srcdir/" |