summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/installer/files/wget_cache.patch
diff options
context:
space:
mode:
authorAlejandro del Castillo <alejandro.delcastillo@ni.com>2015-09-08 14:24:49 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-09 14:27:48 +0100
commit08e09222b2b8a0ac4f60f02c002b185318a2110b (patch)
treedeef81b5bb558006f1e109d56f7bdd48bd0467cd /meta/recipes-devtools/installer/files/wget_cache.patch
parentdd075b9e79250b6db998a583881f966befffa2e0 (diff)
downloadpoky-08e09222b2b8a0ac4f60f02c002b185318a2110b.tar.gz
adt-installer: upgrade to opkg 0.3.0
- Opkg 0.3.0 deprecated --disable-shave & --withopkglibdir options. - Add -i option to autoreconf since opkg tarball is missing conf.compile. - Recreate wget_cache.patch (From OE-Core rev: 8683e198829b729b2f242336d9de6d79251b4be9) Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/installer/files/wget_cache.patch')
-rw-r--r--meta/recipes-devtools/installer/files/wget_cache.patch27
1 files changed, 18 insertions, 9 deletions
diff --git a/meta/recipes-devtools/installer/files/wget_cache.patch b/meta/recipes-devtools/installer/files/wget_cache.patch
index 1281d12a3b..9117510f1f 100644
--- a/meta/recipes-devtools/installer/files/wget_cache.patch
+++ b/meta/recipes-devtools/installer/files/wget_cache.patch
@@ -1,12 +1,21 @@
1Upstream-Status: Inappropriate [configuration] 1Upstream-Status: Inappropriate [configuration]
2 2
3--- trunk/libopkg/opkg_download.c 2011-03-10 16:41:29.000000000 +0800 3---
4+++ trunk/libopkg/opkg_download.c 2011-03-10 16:42:33.000000000 +0800 4 libopkg/opkg_download_wget.c | 1 +
5@@ -162,6 +162,7 @@ 5 1 file changed, 1 insertion(+)
6
7diff --git a/libopkg/opkg_download_wget.c b/libopkg/opkg_download_wget.c
8index 9001493..18ef91e 100644
9--- a/libopkg/opkg_download_wget.c
10+++ b/libopkg/opkg_download_wget.c
11@@ -50,6 +50,7 @@ int opkg_download_backend(const char *src, const char *dest,
6 12
7 argv[i++] = "wget"; 13 argv[i++] = "wget";
8 argv[i++] = "-q"; 14 argv[i++] = "-q";
9+ argv[i++] = "--no-cache"; 15+ argv[i++] = "--no-cache";
10 if (conf->http_proxy || conf->ftp_proxy) { 16 if (opkg_config->http_proxy || opkg_config->ftp_proxy) {
11 argv[i++] = "-Y"; 17 argv[i++] = "-Y";
12 argv[i++] = "on"; 18 argv[i++] = "on";
19--
201.9.1
21