From: Christian Schuler Date: Wed, 14 Sep 2016 12:45:40 +0000 (+0200) Subject: ptest-runner: allow building from externalsrc X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd4f4264a99cb0f8d20e3d87f66102d99cb5b6ad;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ptest-runner: allow building from externalsrc The ${WORKDIR}/git refers to the source folder S which is different in the case of an external source build. Signed-off-by: Christian Schuler Signed-off-by: Pascal Bach Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/ptest-runner/ptest-runner_2.0.bb b/meta/recipes-support/ptest-runner/ptest-runner_2.0.bb index 7081afbeb1d..aaa7c5991b5 100644 --- a/meta/recipes-support/ptest-runner/ptest-runner_2.0.bb +++ b/meta/recipes-support/ptest-runner/ptest-runner_2.0.bb @@ -22,5 +22,5 @@ do_compile () { } do_install () { - install -D -m 0755 ${WORKDIR}/git/ptest-runner ${D}${bindir}/ptest-runner + install -D -m 0755 ${S}/ptest-runner ${D}${bindir}/ptest-runner }