diff options
author | Ross Burton <ross.burton@intel.com> | 2017-11-28 14:45:36 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-10 22:45:18 +0000 |
commit | dc6c2274689f470c14cc090aeae9c0096ec51443 (patch) | |
tree | 544a4b5c6d7c10bc0dbcea77ebb86e867e220e88 /meta/recipes-extended/bash | |
parent | 3f322dfda4ce6909554d426776187c0c2ac0cf07 (diff) | |
download | poky-dc6c2274689f470c14cc090aeae9c0096ec51443.tar.gz |
bash: disable aclocal
Bash hand-maintains their aclocal.m4, so stop autoreconf from invoking aclocal
and overwriting it. This means we can remove the kludge to copy aclocal.m4 to
acinclude.m4.
(From OE-Core rev: 57fe9f61dd4c43f8267b831c1b177ad67010d78c)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bash')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index f4e1f7a11f..89c35bd59c 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -6,7 +6,7 @@ DEPENDS = "ncurses bison-native virtual/libiconv" | |||
6 | 6 | ||
7 | inherit autotools gettext texinfo update-alternatives ptest | 7 | inherit autotools gettext texinfo update-alternatives ptest |
8 | 8 | ||
9 | EXTRA_AUTORECONF += "--exclude=autoheader" | 9 | EXTRA_AUTORECONF += "--exclude=autoheader --exclude=aclocal" |
10 | EXTRA_OECONF = "--enable-job-control --without-bash-malloc" | 10 | EXTRA_OECONF = "--enable-job-control --without-bash-malloc" |
11 | 11 | ||
12 | # If NON_INTERACTIVE_LOGIN_SHELLS is defined, all login shells read the | 12 | # If NON_INTERACTIVE_LOGIN_SHELLS is defined, all login shells read the |
@@ -33,12 +33,6 @@ USERADD_PARAM_${PN}-ptest = "--create-home --user-group test" | |||
33 | 33 | ||
34 | CACHED_CONFIGUREVARS += "headersdir=${includedir}/${PN}" | 34 | CACHED_CONFIGUREVARS += "headersdir=${includedir}/${PN}" |
35 | 35 | ||
36 | do_configure_prepend () { | ||
37 | if [ ! -e ${S}/acinclude.m4 ]; then | ||
38 | cat ${S}/aclocal.m4 > ${S}/acinclude.m4 | ||
39 | fi | ||
40 | } | ||
41 | |||
42 | do_compile_ptest () { | 36 | do_compile_ptest () { |
43 | oe_runmake buildtest | 37 | oe_runmake buildtest |
44 | } | 38 | } |