diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-29 13:08:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-29 16:27:03 +0000 |
commit | 776e3b19160e5e1cceec1a8941c831be4d1f82b0 (patch) | |
tree | 47661d215fe7525412cafbea39651434411c6366 /meta | |
parent | 5ba55f9936d1f036518a1722f9c1e551477e167c (diff) | |
download | openembedded-core-776e3b19160e5e1cceec1a8941c831be4d1f82b0.tar.gz openembedded-core-776e3b19160e5e1cceec1a8941c831be4d1f82b0.tar.bz2 openembedded-core-776e3b19160e5e1cceec1a8941c831be4d1f82b0.zip |
adt_installer: Fix missing autogen.sh error
With the transition from svn -> tarball release, this issue was
missed. Instead of using autogen.sh, we can call configure
directly.
[YOCTO #5606]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/recipes-devtools/installer/adt-installer/adt_installer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer index f3c05185a1..a150de0525 100755 --- a/meta/recipes-devtools/installer/adt-installer/adt_installer +++ b/meta/recipes-devtools/installer/adt-installer/adt_installer @@ -182,7 +182,7 @@ if [ ! -x "$LOCAL_OPKG_LOC/bin/opkg-cl" ]; then check_result echo_info "Configure opkg ...\n" - ./autogen.sh --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 + ./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 echo_info "Make opkg ...\n" |