diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 02:05:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:18:24 +0000 |
commit | 635f498fc739501701e50f3a99e084dfb81cae66 (patch) | |
tree | 1ff32ad3a5cbd225c6aaba8a25c28505a93c50ac /meta/recipes-devtools | |
parent | 915e133205650478c56699ee92b0e067ad785b5e (diff) | |
download | 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')
-rw-r--r-- | meta/recipes-devtools/diffstat/diffstat_1.55.bb | 4 |
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 fdc2967ab3..9b347e8283 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}" | |||
19 | inherit autotools gettext | 19 | inherit autotools gettext |
20 | 20 | ||
21 | do_configure () { | 21 | do_configure () { |
22 | if [ ! -e acinclude.m4 ]; then | 22 | if [ ! -e ${S}/acinclude.m4 ]; then |
23 | mv aclocal.m4 acinclude.m4 | 23 | mv ${S}/aclocal.m4 ${S}/acinclude.m4 |
24 | fi | 24 | fi |
25 | autotools_do_configure | 25 | autotools_do_configure |
26 | } | 26 | } |