summaryrefslogtreecommitdiff
path: root/src/url.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2014-04-10 12:57:58 +0300
committerTimo Teräs <timo.teras@iki.fi>2014-04-10 12:57:58 +0300
commit9ee8c7ca0036929509a210e4ee9049e4b2022305 (patch)
tree2a8685bc6cf6dda0fbe11d733c582a455ec2d1c3 /src/url.c
parentc35086dc927372bcbb260f0ef4b06eca38d9fdc4 (diff)
downloadapk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.tar.gz
apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.tar.bz2
apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.tar.xz
apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.zip
url: double-fallback to static busybox
Diffstat (limited to 'src/url.c')
-rw-r--r--src/url.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/url.c b/src/url.c
index 6c62c95..a8354ee 100644
--- a/src/url.c
+++ b/src/url.c
@@ -75,6 +75,7 @@ static int fork_wget(const char *url, pid_t *ppid)
* See http://redmine.alpinelinux.org/issues/347
*/
execlp("busybox", "wget", "-q", "-O", "-", url, (void*) 0);
+ execlp("busybox.static", "wget", "-q", "-O", "-", url, (void*) 0);
exit(0);
}