From: Richard Purdie Date: Fri, 31 Jan 2014 10:24:42 +0000 (+0000) Subject: libtool: Set CONFIG_SHELL for nativesdk X-Git-Tag: rev_ivi_2015_02_04~9461 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=597c571db7231beeacb1ce209ef0c52a54d4afac;p=scm%2Fbb%2Ftizen-distro.git libtool: Set CONFIG_SHELL for nativesdk We're seeing similar failures that we saw from libtool-native and libtool-cross where /bin/sh changed from bash to dash on different machines after sstate reusage. This patch fixes nativesdk to avoid the same issue. (From OE-Core rev: 7994b2870dac8fd5f6db6d47043378534b644515) Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.2.bb b/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.2.bb index 7b5c97a..fff15e9 100644 --- a/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.2.bb +++ b/meta/recipes-devtools/libtool/nativesdk-libtool_2.4.2.bb @@ -31,3 +31,5 @@ libtoolnativesdk_sysroot_preprocess () { install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ install -m 755 ${D}${bindir}/${HOST_SYS}-libtool ${SYSROOT_DESTDIR}${bindir_crossscripts}/${HOST_SYS}-libtool } + +export CONFIG_SHELL="/bin/bash"