summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-04-06 02:30:02 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-06 22:57:26 +0100
commit4faeff9286153a8b4a52fb08684ded8c8578405f (patch)
tree255e75893f9408aa13119cfb9af21567c1acff24 /meta/recipes-extended
parentb667f4dfdf98e5e02b27917d1c3de20deccc67c9 (diff)
downloadpoky-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>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/wget/wget.inc5
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
23PACKAGECONFIG ??= "" 23PACKAGECONFIG ??= ""
24PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux" 24PACKAGECONFIG[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.
29acpaths = "-I ./m4"