diff options
author | Daniel McGregor <daniel.mcgregor@vecima.com> | 2021-10-12 09:44:48 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-14 22:32:50 +0100 |
commit | dc41944f197e23bbdeabd70c1d70ce1154b347c3 (patch) | |
tree | 8381af1e0aba64c33d89f2d35ca3bb7b30382348 /meta/recipes-devtools/bison | |
parent | 21d529bdf34fbaa2dc6645e66014d8d6995cf0de (diff) | |
download | poky-dc41944f197e23bbdeabd70c1d70ce1154b347c3.tar.gz |
bison: prevent checking for textstyle.
Bison's autoconf is also very good at finding textstyle, force it
to not find it unless it's explictly enabled.
(From OE-Core rev: 4f80931136462546f70f5e40d86d5e566f78d2e3)
Signed-off-by: Daniel McGregor <daniel.mcgregor@vecima.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/bison')
-rw-r--r-- | meta/recipes-devtools/bison/bison_3.8.1.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/bison/bison_3.8.1.bb b/meta/recipes-devtools/bison/bison_3.8.1.bb index a6159b007a..54c1fe1b52 100644 --- a/meta/recipes-devtools/bison/bison_3.8.1.bb +++ b/meta/recipes-devtools/bison/bison_3.8.1.bb | |||
@@ -32,7 +32,9 @@ PACKAGECONFIG[textstyle] = "--with-libtextstyle-prefix,--without-libtextstyle-pr | |||
32 | CACHED_CONFIGUREVARS += "${@bb.utils.contains('PACKAGECONFIG', 'readline', '', ' \ | 32 | CACHED_CONFIGUREVARS += "${@bb.utils.contains('PACKAGECONFIG', 'readline', '', ' \ |
33 | ac_cv_header_readline_history_h=no \ | 33 | ac_cv_header_readline_history_h=no \ |
34 | ac_cv_header_readline_readline_h=no \ | 34 | ac_cv_header_readline_readline_h=no \ |
35 | gl_cv_lib_readline=no', d)}" | 35 | gl_cv_lib_readline=no', d)} \ |
36 | ${@bb.utils.contains('PACKAGECONFIG', 'textstyle', '', ' \ | ||
37 | ac_cv_libtextstyle=no', d)}" | ||
36 | 38 | ||
37 | # The automatic m4 path detection gets confused, so force the right value | 39 | # The automatic m4 path detection gets confused, so force the right value |
38 | acpaths = "-I ./m4" | 40 | acpaths = "-I ./m4" |