diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-17 23:24:03 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-23 09:25:05 +0100 |
commit | c07f09b1b261b0d480544a6100f6a83835c62019 (patch) | |
tree | 192f19690154bf858a5d12e418a8431c90182d0b /meta/recipes-devtools/libtool/libtool-2.4.2.inc | |
parent | 283a418a838ef285988a5ffc3888501ca7de63f1 (diff) | |
download | openembedded-core-c07f09b1b261b0d480544a6100f6a83835c62019.tar.gz openembedded-core-c07f09b1b261b0d480544a6100f6a83835c62019.tar.bz2 openembedded-core-c07f09b1b261b0d480544a6100f6a83835c62019.zip |
libtool: add bash to RDEPENDS_libtool
* Set CONFIG_SHELL="/bin/bash"
* Add bash to RDEPENDS_libtool
We had already set CONFIG_SHELL="/bin/bash" for libtool-native,
libtool-cross and nativesdk-libtool, now also set for target libtool, if
we don't set this, libtool would use /bin/sh, /bin/bash, /bin/ksh or
/bin/sh5 according to the host, and the build is undetermined, this
patch can fix the problem, libtool is a development tool, rdepends on
bash should not cause toubles (for example, the size of the image)
Have tried to set CONFIG_SHELL="/bin/sh" (/bin/sh -> dash), but there is
still a few bashsim in the output libtool.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool-2.4.2.inc')
-rw-r--r-- | meta/recipes-devtools/libtool/libtool-2.4.2.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.2.inc b/meta/recipes-devtools/libtool/libtool-2.4.2.inc index 9c50d46fe2..0f1964b57b 100644 --- a/meta/recipes-devtools/libtool/libtool-2.4.2.inc +++ b/meta/recipes-devtools/libtool/libtool-2.4.2.inc @@ -49,3 +49,5 @@ FILES_libltdl = "${libdir}/libltdl${SOLIBS}" FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" FILES_libltdl-staticdev = "${libdir}/libltdl.a" FILES_libltdl-dbg = "${libdir}/.debug/" + +export CONFIG_SHELL="/bin/bash" |