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/adt-installer/adt_installer | |
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/adt-installer/adt_installer')
-rwxr-xr-x | meta/recipes-devtools/installer/adt-installer/adt_installer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer index 3172de7bca..b8cfb2e5c5 100755 --- a/meta/recipes-devtools/installer/adt-installer/adt_installer +++ b/meta/recipes-devtools/installer/adt-installer/adt_installer @@ -182,8 +182,8 @@ if [ ! -x "$LOCAL_OPKG_LOC/bin/opkg" ]; then check_result echo_info "Configure opkg ...\n" - autoreconf - ./configure --prefix=$parent_folder/$LOCAL_OPKG_LOC --with-opkglibdir=$OPKG_LIBDIR --enable-shared=no --disable-curl --disable-ssl-curl --disable-gpg --disable-shave >> $parent_folder/$YOCTOADT_INSTALL_LOG_FILE + autoreconf -i + ./configure --prefix=$parent_folder/$LOCAL_OPKG_LOC --enable-shared=no --disable-curl --disable-ssl-curl --disable-gpg >> $parent_folder/$YOCTOADT_INSTALL_LOG_FILE check_result echo_info "Make opkg ...\n" |