From 90c75ff2e696e984d18e33726d1d07647b140ee6 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 (cherry picked from commit 73f05ba58dcee57e25712f9aee97535d9a32c982) Signed-off-by: Steve Sakoman --- meta/recipes-devtools/bison/bison_3.5.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/bison/bison_3.5.3.bb b/meta/recipes-devtools/bison/bison_3.5.3.bb index 36c29fe4df..e6c169e9db 100644 --- a/meta/recipes-devtools/bison/bison_3.5.3.bb +++ b/meta/recipes-devtools/bison/bison_3.5.3.bb @@ -28,7 +28,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