[oe-commits] [openembedded-core] 19/39: diffutils: do_configure: fix "Argument list too long"

git at git.openembedded.org git at git.openembedded.org
Thu Dec 8 10:33:17 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 5210ccd61ef52a191454a4587cfeb22079df746d
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Mon Dec 5 06:54:39 2016 -0800

    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.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-extended/diffutils/diffutils_3.5.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-extended/diffutils/diffutils_3.5.bb b/meta/recipes-extended/diffutils/diffutils_3.5.bb
index 673f5d4..243584b 100644
--- a/meta/recipes-extended/diffutils/diffutils_3.5.bb
+++ b/meta/recipes-extended/diffutils/diffutils_3.5.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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list