diff options
author | Philip Balister <philip@balister.org> | 2007-05-23 14:24:12 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2007-05-23 14:24:12 +0000 |
commit | 8ed5699b379847076a2c5103330a0d76bb42586f (patch) | |
tree | 3f97a1ce1befad3b4c34111edcd0bdc6f7d5db6b /packages | |
parent | 866e3e95ab13237e4046da39b36ae39b6b209c0d (diff) |
u-boot.inc : Correct args to install to work with OE install-native.
Insert space between -m and 755.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/uboot/u-boot.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/uboot/u-boot.inc b/packages/uboot/u-boot.inc index d9b2f7b7c9..9a0199496c 100644 --- a/packages/uboot/u-boot.inc +++ b/packages/uboot/u-boot.inc @@ -27,5 +27,5 @@ addtask deploy before do_build after do_compile do_stage() { install -d ${STAGING_BINDIR_NATIVE} - install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE}/ + install -m 755 tools/mkimage ${STAGING_BINDIR_NATIVE}/ } |