summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/installer
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-29 13:08:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-30 22:26:26 +0000
commit2a135de385ce195404e40d0c2cd369ce88a3b2e9 (patch)
tree12d0306872556d278214c788f9e61c861aaa7389 /meta/recipes-devtools/installer
parentf81aa8db52ef5d498e0fecfc8bd5beef41a85613 (diff)
downloadpoky-2a135de385ce195404e40d0c2cd369ce88a3b2e9.tar.gz
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] (From OE-Core rev: 776e3b19160e5e1cceec1a8941c831be4d1f82b0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/installer')
-rwxr-xr-xmeta/recipes-devtools/installer/adt-installer/adt_installer2
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
182 check_result 182 check_result
183 183
184 echo_info "Configure opkg ...\n" 184 echo_info "Configure opkg ...\n"
185 ./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 185 ./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
186 check_result 186 check_result
187 187
188 echo_info "Make opkg ...\n" 188 echo_info "Make opkg ...\n"