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 22:57:26 +0100 |
commit | 4faeff9286153a8b4a52fb08684ded8c8578405f (patch) | |
tree | 255e75893f9408aa13119cfb9af21567c1acff24 | |
parent | b667f4dfdf98e5e02b27917d1c3de20deccc67c9 (diff) | |
download | poky-4faeff9286153a8b4a52fb08684ded8c8578405f.tar.gz |
wget: fix build when len(TMPDIR) == 410
Fixed:
aclocal: error: cannot open [snip] |: Argument list too long
Set acpaths to fix the problem.
(From OE-Core rev: 2114b5a9a70bb07bdb15edafa6ec9689933db871)
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" | |||
22 | 22 | ||
23 | PACKAGECONFIG ??= "" | 23 | PACKAGECONFIG ??= "" |
24 | PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux" | 24 | PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux" |
25 | |||
26 | # Let aclocal use the relative path for the m4 file rather than | ||
27 | # absolute, otherwise there might be an "Argument list too long" error | ||
28 | # when it is built in a long/deep directory. | ||
29 | acpaths = "-I ./m4" | ||