diff options
author | Timo Teräs <timo.teras@iki.fi> | 2011-01-01 12:09:42 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2011-01-01 12:09:42 +0200 |
commit | aae0a563edc21030c08fd47e30e78eda22183027 (patch) | |
tree | 24fadc271859c005ee19b5240419fac969d32dff /src/url.c | |
parent | f126316c791371bd3dfd7c348b10e93e49f5e2d4 (diff) | |
download | apk-tools-aae0a563edc21030c08fd47e30e78eda22183027.tar.gz apk-tools-aae0a563edc21030c08fd47e30e78eda22183027.tar.bz2 apk-tools-aae0a563edc21030c08fd47e30e78eda22183027.tar.xz apk-tools-aae0a563edc21030c08fd47e30e78eda22183027.zip |
url: use always busybox wget
I think there used to be problems with using http_proxy on bb wget,
but those have been fixed for quite some time. This fixes #347.
We should probably use libcurl or similar library eventually, but
I'm not entirely sure if/when we want that.
Diffstat (limited to 'src/url.c')
-rw-r--r-- | src/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ static int fork_wget(const char *url, pid_t *ppid) close(fds[0]); dup2(open("/dev/null", O_RDONLY), STDIN_FILENO); dup2(fds[1], STDOUT_FILENO); - execlp("wget", "wget", "-q", "-O", "-", url, NULL); + execlp("busybox", "wget", "-q", "-O", "-", url, NULL); exit(0); } |