From: Bian Naimeng Date: Wed, 7 Aug 2013 03:33:19 +0000 (+0800) Subject: bash: reference acl*.m4 from ${S} X-Git-Tag: rev_ivi_2015_02_04~11512 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40f08453664995ffb0ede63cdfeab1f90ad9b628;p=scm%2Fbb%2Ftizen-distro.git 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 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 2f4519c..64b476f 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 }