From: Richard Purdie Date: Mon, 18 Mar 2013 02:05:04 +0000 (+0000) Subject: lttng-ust: Fix case where ${B} != ${S} X-Git-Tag: 2015-4~7171 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=970be6b43acd16dac1400ce322dcd2cb6272fd63;p=openembedded-core.git lttng-ust: Fix case where ${B} != ${S} Fix out of tree builds by ensuring bootstrap is executed in ${S}. Signed-off-by: Richard Purdie --- 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