| Message ID | 20260204153422.1904772-1-ross.burton@arm.com |
|---|---|
| State | New |
| Headers | show |
| Series | gawk: trim native build configuration | expand |
diff --git a/meta/recipes-extended/gawk/gawk_5.3.2.bb b/meta/recipes-extended/gawk/gawk_5.3.2.bb index 01602f4f27..324f2c463a 100644 --- a/meta/recipes-extended/gawk/gawk_5.3.2.bb +++ b/meta/recipes-extended/gawk/gawk_5.3.2.bb @@ -15,6 +15,9 @@ LICENSE:${PN} = "GPL-3.0-or-later" LICENSE:${PN}:append = " ${@bb.utils.contains('PACKAGECONFIG', 'pma-if-64bit', ' & AGPL-3.0-or-later', '', d)}" PACKAGECONFIG ??= "readline mpfr" +# Make native builds lean +PACKAGECONFIG:class-native = "" + PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline" PACKAGECONFIG[mpfr] = "--with-mpfr,--without-mpfr, mpfr" # pma: persistent memory allocator:
When we build gawk-native it is only for use in builds where the host gawk output isn't reproducible across versions[1]. As such it doesn't need support for readline or mprf, and by removing those from gawk-native we can get building gawk-native sooner. [1] oe-core c5bbf0a60b ("gawk: use native gawk when building glibc and grub") Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta/recipes-extended/gawk/gawk_5.3.2.bb | 3 +++ 1 file changed, 3 insertions(+)