diff options
author | Kevin Tian <kevin.tian@intel.com> | 2011-01-26 19:37:10 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-28 16:49:12 +0000 |
commit | ce9d6ebf34d7972021529c6270426c1760b967e5 (patch) | |
tree | 54b6417d219bd79eadc0719809405615645d4c8e /meta/recipes-extended/bash/bash.inc | |
parent | abc25cb88570bf54d3bb518b5083402894cca061 (diff) | |
download | poky-ce9d6ebf34d7972021529c6270426c1760b967e5.tar.gz |
bash: use /bin/bash as default shell when bash is included
though bash is included in LSB profile, it doesn't use update-alternative
to take effect and thus it's still busybox behaving as /bin/sh.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/recipes-extended/bash/bash.inc')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index aa8cac8222..a87b87ff4b 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -17,6 +17,11 @@ sbindir = "/sbin" | |||
17 | EXTRA_OECONF = "--enable-job-control" | 17 | EXTRA_OECONF = "--enable-job-control" |
18 | export CC_FOR_BUILD = "${BUILD_CC}" | 18 | export CC_FOR_BUILD = "${BUILD_CC}" |
19 | 19 | ||
20 | ALTERNATIVE_NAME = "sh" | ||
21 | ALTERNATIVE_PATH = "${base_bindir}/bash" | ||
22 | ALTERNATIVE_LINK = "${base_bindir}/sh" | ||
23 | ALTERNATIVE_PRIORITY = "100" | ||
24 | |||
20 | do_configure () { | 25 | do_configure () { |
21 | gnu-configize | 26 | gnu-configize |
22 | oe_runconf | 27 | oe_runconf |