index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2012-01-08 23:57:48 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-01-08 12:13:32 -0600 |
commit | 73d0d743bda5367fcab2453bbe21c15e481150c2 (patch) | |
tree | 71bcad7c7c455793dc505cb011e4b713b429a774 | |
parent | 2b38f4eab7684e0f1e78b0b10953bf28915e963a (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 3 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index a700d9d0..797b8d78 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -551,7 +551,8 @@ download_sources() { fi # find the client we should use for this URL - local dlclient=$(get_downloadclient "$url") || exit $? + local dlclient + dlclient=$(get_downloadclient "$url") || exit $? msg2 "$(gettext "Downloading %s...")" "$file" # fix flyspray bug #3289 |