u-boot.inc : Correct args to install to work with OE install-native.
authorPhilip Balister <philip@balister.org>
Wed, 23 May 2007 14:24:12 +0000 (14:24 +0000)
committerPhilip Balister <philip@balister.org>
Wed, 23 May 2007 14:24:12 +0000 (14:24 +0000)
             Insert space between -m and 755.

packages/uboot/u-boot.inc

index d9b2f7b..9a01994 100644 (file)
@@ -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}/
 }