diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/uboot/u-boot.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/packages/uboot/u-boot.inc b/meta/packages/uboot/u-boot.inc index 93d6037339f..3e926a4ea6a 100644 --- a/meta/packages/uboot/u-boot.inc +++ b/meta/packages/uboot/u-boot.inc @@ -34,7 +34,7 @@ do_deploy () { do_deploy[dirs] = "${S}" addtask deploy before do_build after do_compile -do_stage() { - install -d ${STAGING_BINDIR_NATIVE} - install -m 755 tools/mkimage ${STAGING_BINDIR_NATIVE}/ +do_install() { + install -d ${D}${bindir} + install -m 755 tools/mkimage ${D}${bindir}/ } |