diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-04-10 12:57:58 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2014-04-10 12:57:58 +0300 |
commit | 9ee8c7ca0036929509a210e4ee9049e4b2022305 (patch) | |
tree | 2a8685bc6cf6dda0fbe11d733c582a455ec2d1c3 | |
parent | c35086dc927372bcbb260f0ef4b06eca38d9fdc4 (diff) | |
download | apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.tar.gz apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.tar.bz2 apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.tar.xz apk-tools-9ee8c7ca0036929509a210e4ee9049e4b2022305.zip |
url: double-fallback to static busybox
-rw-r--r-- | src/url.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); } |