[oe-commits] Richard Purdie : adt_installer: Fix missing autogen.sh error

git at git.openembedded.org git at git.openembedded.org
Fri Nov 29 13:32:48 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: 559028db5517fc36789f0d32eabb26619b9a0eb7
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=559028db5517fc36789f0d32eabb26619b9a0eb7

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Fri Nov 29 13:08:58 2013 +0000

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 at linuxfoundation.org>

---

 meta/recipes-devtools/installer/adt-installer/adt_installer | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/installer/adt-installer/adt_installer b/meta/recipes-devtools/installer/adt-installer/adt_installer
index f3c0518..a150de0 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"



More information about the Openembedded-commits mailing list