aboutsummaryrefslogtreecommitdiffstats
path: root/packages/uboot
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2007-03-15 10:30:13 +0000
committerRod Whitby <rod@whitby.id.au>2007-03-15 10:30:13 +0000
commit708f0e7e1f3f572030d64a3f3f05e722fd020d8b (patch)
tree4be05ed5742d015e6de43d64f45fbffe31b8223a /packages/uboot
parente1027a8a6260805797310c6bc0e32b3d0d8e0eca (diff)
downloadopenembedded-708f0e7e1f3f572030d64a3f3f05e722fd020d8b.tar.gz
dfu-util-native, ftdi-eeprom-native, tzcode-native, u-boot, uboot-utils: create the STAGING_BINDIR_NATIVE directory before installing stuff into it.
Diffstat (limited to 'packages/uboot')
-rw-r--r--packages/uboot/u-boot.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/uboot/u-boot.inc b/packages/uboot/u-boot.inc
index 3b26e55f1b..d9b2f7b7c9 100644
--- a/packages/uboot/u-boot.inc
+++ b/packages/uboot/u-boot.inc
@@ -26,5 +26,6 @@ do_deploy[dirs] = "${S}"
addtask deploy before do_build after do_compile
do_stage() {
- install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE}
+ install -d ${STAGING_BINDIR_NATIVE}
+ install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE}/
}