From: Phil Blundell Date: Tue, 17 May 2011 10:34:14 +0000 (+0100) Subject: guilt-native: eliminate hardcoded "/usr" in do_install X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~45569 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3ada06e13820539425a4780cd749bf974b96b6f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git guilt-native: eliminate hardcoded "/usr" in do_install For some reason guilt-native seems to have gone out of its way to refer explicitly to /usr, which breaks on micro. Let's use ${prefix} instead. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/guilt/guilt-native_0.33.bb b/meta/recipes-devtools/guilt/guilt-native_0.33.bb index 62613306855..7d0246e3372 100644 --- a/meta/recipes-devtools/guilt/guilt-native_0.33.bb +++ b/meta/recipes-devtools/guilt/guilt-native_0.33.bb @@ -28,5 +28,5 @@ do_compile() { } do_install() { - oe_runmake PREFIX=${D}/${base_prefix}/usr install + oe_runmake PREFIX=${D}/${prefix} install }