diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-05-12 17:29:02 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-13 19:24:03 +0100 |
commit | 01f3afece8917a5f965f463b79e04693b0d2932a (patch) | |
tree | ae84c53eddc250b6b95ea03bf85462a985dc6ff8 | |
parent | 57109e59abb7c6af029f452d06b46f47084cff11 (diff) | |
download | openembedded-core-01f3afece8917a5f965f463b79e04693b0d2932a.tar.gz openembedded-core-01f3afece8917a5f965f463b79e04693b0d2932a.tar.bz2 openembedded-core-01f3afece8917a5f965f463b79e04693b0d2932a.zip |
adt_installer: run autoreconf before configuring opkg
opkg fails to build on hosts with older autotools versions.
[YOCTO #6293]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | meta/recipes-devtools/installer/adt-installer/adt_installer | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer index 1f2d039598..7fc37f82fc 100755 --- a/meta/recipes-devtools/installer/adt-installer/adt_installer +++ b/meta/recipes-devtools/installer/adt-installer/adt_installer @@ -182,6 +182,7 @@ if [ ! -x "$LOCAL_OPKG_LOC/bin/opkg-cl" ]; 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 check_result |