summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/diffstat
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-18 02:05:07 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-18 13:18:24 +0000
commit635f498fc739501701e50f3a99e084dfb81cae66 (patch)
tree1ff32ad3a5cbd225c6aaba8a25c28505a93c50ac /meta/recipes-devtools/diffstat
parent915e133205650478c56699ee92b0e067ad785b5e (diff)
downloadast2050-yocto-poky-635f498fc739501701e50f3a99e084dfb81cae66.zip
ast2050-yocto-poky-635f498fc739501701e50f3a99e084dfb81cae66.tar.gz
diffstat: Fix case where ${B} != ${S}
Fix out of tree builds by fixing cwd assumptions. (From OE-Core rev: 21b504453cbd5ef94812fddf224622c7ce167981) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/diffstat')
-rw-r--r--meta/recipes-devtools/diffstat/diffstat_1.55.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/diffstat/diffstat_1.55.bb b/meta/recipes-devtools/diffstat/diffstat_1.55.bb
index fdc2967..9b347e8 100644
--- a/meta/recipes-devtools/diffstat/diffstat_1.55.bb
+++ b/meta/recipes-devtools/diffstat/diffstat_1.55.bb
@@ -19,8 +19,8 @@ S = "${WORKDIR}/diffstat-${PV}"
inherit autotools gettext
do_configure () {
- if [ ! -e acinclude.m4 ]; then
- mv aclocal.m4 acinclude.m4
+ if [ ! -e ${S}/acinclude.m4 ]; then
+ mv ${S}/aclocal.m4 ${S}/acinclude.m4
fi
autotools_do_configure
}
OpenPOWER on IntegriCloud