From: Philip Balister Date: Wed, 23 May 2007 14:24:12 +0000 (+0000) Subject: u-boot.inc : Correct args to install to work with OE install-native. X-Git-Tag: Release-2010-05/1~8868^2~400^2~179^2~8^2~8 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ed5699b379847076a2c5103330a0d76bb42586f;p=openembedded.git u-boot.inc : Correct args to install to work with OE install-native. Insert space between -m and 755. --- 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}/ }