diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-12-05 06:54:39 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-11 11:46:48 +0000 |
commit | 3903e93c50616b592ac1a2a241573305bb9265a9 (patch) | |
tree | fab41910838b109205a55fe6c292e57cf6c753c5 /meta/recipes-extended | |
parent | a7c49e98cff402b5400643ae2a04ae3f345c5bce (diff) | |
download | openembedded-core-3903e93c50616b592ac1a2a241573305bb9265a9.tar.gz openembedded-core-3903e93c50616b592ac1a2a241573305bb9265a9.tar.bz2 openembedded-core-3903e93c50616b592ac1a2a241573305bb9265a9.zip |
diffutils: do_configure: fix "Argument list too long"
Fixed when len(TMPDIR) = 410:
aclocal: error: cannot open echo [snip]: Argument list too long
This is becuase it has a lot of m4 files, use relative path for them
can fix the problem.
It doesn't happen when MACHINE="qemux86", I think it is because
intel-x86-64 is longer than qemux86.
(From OE-Core rev: 5210ccd61ef52a191454a4587cfeb22079df746d)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/diffutils/diffutils_3.4.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-extended/diffutils/diffutils_3.4.bb b/meta/recipes-extended/diffutils/diffutils_3.4.bb index cb7092b514..be280ec0f5 100644 --- a/meta/recipes-extended/diffutils/diffutils_3.4.bb +++ b/meta/recipes-extended/diffutils/diffutils_3.4.bb @@ -10,6 +10,9 @@ SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.xz \ EXTRA_OECONF += "--without-libsigsegv-prefix" +# Fix "Argument list too long" error when len(TMPDIR) = 410 +acpaths = "-I ./m4" + do_configure_prepend () { # Need to remove gettext macros with weird mix of versions for i in codeset.m4 gettext_gl.m4 intlmacosx.m4 inttypes-pri.m4 lib-ld_gl.m4 lib-prefix_gl.m4 po_gl.m4 ssize_t.m4 wchar_t.m4 wint_t.m4; do |