diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-31 10:24:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-31 15:44:21 +0000 |
commit | 964a590539d0f28da160fb1a94e8b417b6a9b9af (patch) | |
tree | 8db6593c2f9a8929f0fe20273f56e1323d26be21 | |
parent | 56c21bd1789844a04b2c2eaf01176ba7634ee520 (diff) | |
download | poky-964a590539d0f28da160fb1a94e8b417b6a9b9af.tar.gz |
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 <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/libtool/nativesdk-libtool_2.4.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
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 7b5c97a97a..fff15e916d 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 () { | |||
31 | install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ | 31 | install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ |
32 | install -m 755 ${D}${bindir}/${HOST_SYS}-libtool ${SYSROOT_DESTDIR}${bindir_crossscripts}/${HOST_SYS}-libtool | 32 | install -m 755 ${D}${bindir}/${HOST_SYS}-libtool ${SYSROOT_DESTDIR}${bindir_crossscripts}/${HOST_SYS}-libtool |
33 | } | 33 | } |
34 | |||
35 | export CONFIG_SHELL="/bin/bash" | ||