diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-03-15 10:30:13 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-03-15 10:30:13 +0000 |
commit | 708f0e7e1f3f572030d64a3f3f05e722fd020d8b (patch) | |
tree | 4be05ed5742d015e6de43d64f45fbffe31b8223a /packages/uboot/u-boot.inc | |
parent | e1027a8a6260805797310c6bc0e32b3d0d8e0eca (diff) |
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/u-boot.inc')
-rw-r--r-- | packages/uboot/u-boot.inc | 3 |
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}/ } |