diff options
author | Liping Ke <liping.ke@intel.com> | 2011-03-03 10:10:49 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-03 23:13:33 +0000 |
commit | a003ba3d2b80dc08d128f9b58890fe89c612236d (patch) | |
tree | 57274daed269588cd4295948bfc09eaa0fde0993 /meta/recipes-devtools/installer/adt-installer | |
parent | 95e7b7b280d8f7e699a949fa775a6846a256266c (diff) | |
download | openembedded-core-a003ba3d2b80dc08d128f9b58890fe89c612236d.tar.gz openembedded-core-a003ba3d2b80dc08d128f9b58890fe89c612236d.tar.bz2 openembedded-core-a003ba3d2b80dc08d128f9b58890fe89c612236d.zip |
Add libtool-nativesdk for ADT
We need to add libtool native sdk support in ADT installer.
This patch fix #bug 791
Signed-off-by: Liping Ke <liping.ke@intel.com>
Diffstat (limited to 'meta/recipes-devtools/installer/adt-installer')
-rwxr-xr-x | meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal index 9653284e5a..b5e304d442 100755 --- a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal +++ b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal @@ -101,6 +101,9 @@ check_result echo_info "Installing pkgconfig nativesdk ...\n" $OPKG_INSTALL_NATIVE_CMD pkgconfig-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE check_result +echo_info "Installing libtool nativesdk ...\n" +$OPKG_INSTALL_NATIVE_CMD libtool-nativesdk &>> $YOCTOADT_INSTALL_LOG_FILE +check_result for native_target_type in $YOCTOADT_TARGETS; do native_target_type=`echo "$native_target_type" | sed -e 's/x86_64/x86-64/' -e 's/x86$/i586/'` |