summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-11-09 19:37:41 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-31 10:18:41 +0000
commit2c13c5d3fecfae7bb2a3cdff992bc781139a61c1 (patch)
tree21d71b024ab1b9f318c33f9516580eecb9b51035 /meta/recipes-support
parent769c4ebb4f29fbd5c2466df88379458f95afc90a (diff)
downloadpoky-2c13c5d3fecfae7bb2a3cdff992bc781139a61c1.tar.gz
apr-native: Set CONFIG_SHELL to /bin/bash
The apr-native provides usr/share/build-1/libtool which is required by the recipe such as apache2-native. If we don't set the CONFIG_SHELL to /bin/bash, then: 1) If we build apr-native on a host which is "/bin/sh -> bash", the interpreter in usr/share/build-1/libtool would be "#!/bin/sh". 2) When we re-use apr-native's sstate on a host which is "/bin/sh -> dash", there would be errors. (From OE-Core rev: 38d83009dfe77437533969ce681605a9ab9534ac) (From OE-Core rev: 3a1e6615b8ff3edc9ed2b16baf182673140ca3d2) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/apr/apr_1.5.1.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/apr/apr_1.5.1.bb b/meta/recipes-support/apr/apr_1.5.1.bb
index 17dddbce7e..49a08b0261 100644
--- a/meta/recipes-support/apr/apr_1.5.1.bb
+++ b/meta/recipes-support/apr/apr_1.5.1.bb
@@ -86,3 +86,5 @@ do_install_ptest() {
86 cp ${S}/test/testall $t/ 86 cp ${S}/test/testall $t/
87 cp ${S}/test/tryread $t/ 87 cp ${S}/test/tryread $t/
88} 88}
89
90export CONFIG_SHELL="/bin/bash"