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:17:40 +0000 |
commit | 970be6b43acd16dac1400ce322dcd2cb6272fd63 (patch) | |
tree | fee21819d896d9f09792f8bd6cd1bc29ea4cdb69 /meta | |
parent | 414f748ee499f629bf50eb3fa70e20e2105b3c49 (diff) | |
download | openembedded-core-970be6b43acd16dac1400ce322dcd2cb6272fd63.tar.gz openembedded-core-970be6b43acd16dac1400ce322dcd2cb6272fd63.tar.bz2 openembedded-core-970be6b43acd16dac1400ce322dcd2cb6272fd63.zip |
lttng-ust: Fix case where ${B} != ${S}
Fix out of tree builds by ensuring bootstrap is executed in ${S}.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 \ S = "${WORKDIR}/git" do_configure_prepend () { - ${S}/bootstrap + ( cd ${S}; ${S}/bootstrap ) } # Due to liburcu not building for MIPS currently this recipe needs to |