diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-02 11:41:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-04 17:05:31 +0000 |
commit | 3b856e1cdf38705f1ae79df09e7e6f388673a683 (patch) | |
tree | 6cdcd2e18d31b75fe425a15c16b79b2935bdf895 /meta/recipes-extended/bash/bash.inc | |
parent | e48e2f2335b1fca89df30d1f7393c9bd1f28f40f (diff) | |
download | poky-3b856e1cdf38705f1ae79df09e7e6f388673a683.tar.gz |
bash: Ensure we fully reautoconf the recipes so site data is used
This ensures bug 487 (missing job control functionality) really gets fixed.
[YOCTO #487]
(From OE-Core rev: 08b78066bd5a9ff2819a42eb4263ee0a78cddb97)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bash/bash.inc')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index d55e517de1..876be1e42d 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -22,9 +22,12 @@ ALTERNATIVE_PATH = "${base_bindir}/bash" | |||
22 | ALTERNATIVE_LINK = "${base_bindir}/sh" | 22 | ALTERNATIVE_LINK = "${base_bindir}/sh" |
23 | ALTERNATIVE_PRIORITY = "100" | 23 | ALTERNATIVE_PRIORITY = "100" |
24 | 24 | ||
25 | do_configure () { | 25 | export AUTOHEADER = "true" |
26 | gnu-configize | 26 | |
27 | oe_runconf | 27 | do_configure_prepend () { |
28 | if [ ! -e acinclude.m4 ]; then | ||
29 | cat aclocal.m4 > acinclude.m4 | ||
30 | fi | ||
28 | } | 31 | } |
29 | 32 | ||
30 | pkg_postinst_${PN} () { | 33 | pkg_postinst_${PN} () { |