diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 02:05:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:18:25 +0000 |
commit | 2072e82c544c5ad50bde1bddf614d99f640c0554 (patch) | |
tree | 8d8b5c6e80a72e72b54f456856fe706a970a64eb /meta/recipes-kernel/lttng | |
parent | 748085df6401316ecefbc1d20a01c7d923b42e54 (diff) | |
download | poky-2072e82c544c5ad50bde1bddf614d99f640c0554.tar.gz |
lttng-ust: Fix case where ${B} != ${S}
Fix out of tree builds by ensuring bootstrap is executed in ${S}.
(From OE-Core rev: 970be6b43acd16dac1400ce322dcd2cb6272fd63)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/lttng')
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-ust_2.1.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-ust_2.1.1.bb b/meta/recipes-kernel/lttng/lttng-ust_2.1.1.bb index 211798162c..8f8bbc7aee 100644 --- a/meta/recipes-kernel/lttng/lttng-ust_2.1.1.bb +++ b/meta/recipes-kernel/lttng/lttng-ust_2.1.1.bb | |||
@@ -29,7 +29,7 @@ SRC_URI = "git://git.lttng.org/lttng-ust.git;protocol=git \ | |||
29 | S = "${WORKDIR}/git" | 29 | S = "${WORKDIR}/git" |
30 | 30 | ||
31 | do_configure_prepend () { | 31 | do_configure_prepend () { |
32 | ${S}/bootstrap | 32 | ( cd ${S}; ${S}/bootstrap ) |
33 | } | 33 | } |
34 | 34 | ||
35 | # Due to liburcu not building for MIPS currently this recipe needs to | 35 | # Due to liburcu not building for MIPS currently this recipe needs to |