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.

(From OE-Core rev: e3ada06e13820539425a4780cd749bf974b96b6f)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Phil Blundell 2011-05-17 11:34:14 +01:00 committed by Richard Purdie
parent ceeb54d926
commit ba3995d7ee
1 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,5 @@ do_compile() {
}
do_install() {
oe_runmake PREFIX=${D}/${base_prefix}/usr install
oe_runmake PREFIX=${D}/${prefix} install
}