diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-04-06 02:30:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-06 10:32:42 +0100 |
commit | 2114b5a9a70bb07bdb15edafa6ec9689933db871 (patch) | |
tree | d2862ebc49040fb41ea9684cc3883fce0bce562e | |
parent | e5a4c3f8ea0d27ce2b3a3c33c231e28b7647f16b (diff) | |
download | openembedded-core-2114b5a9a70bb07bdb15edafa6ec9689933db871.tar.gz openembedded-core-2114b5a9a70bb07bdb15edafa6ec9689933db871.tar.bz2 openembedded-core-2114b5a9a70bb07bdb15edafa6ec9689933db871.zip |
wget: fix build when len(TMPDIR) == 410
Fixed:
aclocal: error: cannot open [snip] |: Argument list too long
Set acpaths to fix the problem.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 049b898d39..dc381a6280 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -22,3 +22,8 @@ BBCLASSEXTEND += "nativesdk" PACKAGECONFIG ??= "" PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux" + +# Let aclocal use the relative path for the m4 file rather than +# absolute, otherwise there might be an "Argument list too long" error +# when it is built in a long/deep directory. +acpaths = "-I ./m4" |