diff options
author | Bian Naimeng <biannm@cn.fujitsu.com> | 2013-08-07 11:33:19 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-12 13:09:50 +0100 |
commit | d1fd10e502115723d117409fb1edc32345042e9c (patch) | |
tree | 1abae2805529819addc8eeca3f45430f009f8200 /meta/recipes-extended/bash | |
parent | 5c7b8fc342b19080ec02012156eb53c038794d69 (diff) | |
download | poky-d1fd10e502115723d117409fb1edc32345042e9c.tar.gz |
bash: reference acl*.m4 from ${S}
bash: reference acl*.m4 from ${S}.
The build directory had been moved to ${WORKDIR}/build,
so we should reference acl*.m4 from ${S}.
Otherwise, the following configure error will be caught.
| cat: aclocal.m4: No such file or directory
| ERROR: Function failed: do_configure (log file is located at ...)
(From OE-Core rev: b296e7412a45f0c07b4f843784211ef0f66221e6)
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bash')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 2f4519cdda..64b476f4fb 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -20,8 +20,8 @@ export AUTOHEADER = "true" | |||
20 | RDEPENDS_${PN}-ptest += "make" | 20 | RDEPENDS_${PN}-ptest += "make" |
21 | 21 | ||
22 | do_configure_prepend () { | 22 | do_configure_prepend () { |
23 | if [ ! -e acinclude.m4 ]; then | 23 | if [ ! -e ${S}/acinclude.m4 ]; then |
24 | cat aclocal.m4 > acinclude.m4 | 24 | cat ${S}/aclocal.m4 > ${S}/acinclude.m4 |
25 | fi | 25 | fi |
26 | } | 26 | } |
27 | 27 | ||