diff options
| author | Lee Chee Yang <chee.yang.lee@intel.com> | 2020-05-11 18:57:02 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-07-22 22:46:37 +0100 |
| commit | f37eab63535d632b047412b769e6afdb845ea541 (patch) | |
| tree | 2e21c8a0650294c38c5a09bfbb3d46144306bf1c | |
| parent | 5fd0b97e7d5a835101ddf1154be567913b44b663 (diff) | |
| download | poky-f37eab63535d632b047412b769e6afdb845ea541.tar.gz | |
bison: fix Argument list too long error
fix Argument list too long error when len(TMPDIR) = 410
(From OE-Core rev: 90c75ff2e696e984d18e33726d1d07647b140ee6)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 73f05ba58dcee57e25712f9aee97535d9a32c982)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/bison/bison_3.5.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
| 28 | inherit autotools gettext texinfo | 28 | inherit autotools gettext texinfo |
| 29 | 29 | ||
| 30 | # The automatic m4 path detection gets confused, so force the right value | 30 | # The automatic m4 path detection gets confused, so force the right value |
| 31 | acpaths = "-I ${S}/m4" | 31 | acpaths = "-I ./m4" |
| 32 | 32 | ||
| 33 | do_compile_prepend() { | 33 | do_compile_prepend() { |
| 34 | for i in mfcalc calc++ rpcalc; do mkdir -p ${B}/examples/$i; done | 34 | for i in mfcalc calc++ rpcalc; do mkdir -p ${B}/examples/$i; done |
