diff options
author | Alejandro del Castillo <alejandro.delcastillo@ni.com> | 2015-09-08 14:24:49 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-09 14:25:01 +0100 |
commit | 8683e198829b729b2f242336d9de6d79251b4be9 (patch) | |
tree | d0bb654690bd04cb1e756584ee8a72b57a0f54b6 /meta/recipes-devtools/installer/files | |
parent | fb3a5c732997eddee6dacb52558d4e6c8942f1e1 (diff) | |
download | openembedded-core-8683e198829b729b2f242336d9de6d79251b4be9.tar.gz openembedded-core-8683e198829b729b2f242336d9de6d79251b4be9.tar.bz2 openembedded-core-8683e198829b729b2f242336d9de6d79251b4be9.zip |
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
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')
-rw-r--r-- | meta/recipes-devtools/installer/files/wget_cache.patch | 27 |
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 @@ Upstream-Status: Inappropriate [configuration] ---- trunk/libopkg/opkg_download.c 2011-03-10 16:41:29.000000000 +0800 -+++ trunk/libopkg/opkg_download.c 2011-03-10 16:42:33.000000000 +0800 -@@ -162,6 +162,7 @@ +--- + libopkg/opkg_download_wget.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/libopkg/opkg_download_wget.c b/libopkg/opkg_download_wget.c +index 9001493..18ef91e 100644 +--- a/libopkg/opkg_download_wget.c ++++ b/libopkg/opkg_download_wget.c +@@ -50,6 +50,7 @@ int opkg_download_backend(const char *src, const char *dest, - argv[i++] = "wget"; - argv[i++] = "-q"; -+ argv[i++] = "--no-cache"; - if (conf->http_proxy || conf->ftp_proxy) { - argv[i++] = "-Y"; - argv[i++] = "on"; + argv[i++] = "wget"; + argv[i++] = "-q"; ++ argv[i++] = "--no-cache"; + if (opkg_config->http_proxy || opkg_config->ftp_proxy) { + argv[i++] = "-Y"; + argv[i++] = "on"; +-- +1.9.1 + |