diff options
author | Phil Blundell <pb@pbcl.net> | 2011-05-17 11:34:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-17 15:00:38 +0100 |
commit | e3ada06e13820539425a4780cd749bf974b96b6f (patch) | |
tree | 3a9f53dfa9ff54121b9602b5d18e2fc20599b3e0 /meta/recipes-devtools/guilt | |
parent | b60b9ae2422d50c65aa604b726eb36b3db6508ff (diff) | |
download | openembedded-core-e3ada06e13820539425a4780cd749bf974b96b6f.tar.gz openembedded-core-e3ada06e13820539425a4780cd749bf974b96b6f.tar.bz2 openembedded-core-e3ada06e13820539425a4780cd749bf974b96b6f.zip |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guilt')
-rw-r--r-- | meta/recipes-devtools/guilt/guilt-native_0.33.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/guilt/guilt-native_0.33.bb b/meta/recipes-devtools/guilt/guilt-native_0.33.bb index 6261330685..7d0246e337 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 } |