diff options
author | Bian Naimeng <biannm@cn.fujitsu.com> | 2013-08-07 11:33:19 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-08-09 07:55:10 -0700 |
commit | b296e7412a45f0c07b4f843784211ef0f66221e6 (patch) | |
tree | 92b0428fb1d27324bded7d0bd3fa780a20479879 /meta/recipes-extended/bash | |
parent | 9aac194d7db79129dcbed29cfb89c57dccf33729 (diff) | |
download | openembedded-core-contrib-b296e7412a45f0c07b4f843784211ef0f66221e6.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 ...)
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
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 2f4519cdda1..64b476f4fb8 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc @@ -20,8 +20,8 @@ export AUTOHEADER = "true" RDEPENDS_${PN}-ptest += "make" do_configure_prepend () { - if [ ! -e acinclude.m4 ]; then - cat aclocal.m4 > acinclude.m4 + if [ ! -e ${S}/acinclude.m4 ]; then + cat ${S}/aclocal.m4 > ${S}/acinclude.m4 fi } |