From 73f05ba58dcee57e25712f9aee97535d9a32c982 Mon Sep 17 00:00:00 2001 From: Lee Chee Yang Date: Mon, 11 May 2020 18:57:02 +0800 Subject: [PATCH] bison: fix Argument list too long error fix Argument list too long error when len(TMPDIR) = 410 Signed-off-by: Lee Chee Yang Signed-off-by: Richard Purdie --- meta/recipes-devtools/bison/bison_3.6.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/bison/bison_3.6.4.bb b/meta/recipes-devtools/bison/bison_3.6.4.bb index 0c877c3c58..f3d4d42442 100644 --- a/meta/recipes-devtools/bison/bison_3.6.4.bb +++ b/meta/recipes-devtools/bison/bison_3.6.4.bb @@ -27,7 +27,7 @@ EXTRA_OEMAKE_append = " -l" inherit autotools gettext texinfo # The automatic m4 path detection gets confused, so force the right value -acpaths = "-I ${S}/m4" +acpaths = "-I ./m4" do_compile_prepend() { for i in mfcalc calc++ rpcalc; do mkdir -p ${B}/examples/$i; done -- 2.40.1