diff options
author | Arun Bhanu <arun@bhanu.net> | 2010-03-12 16:31:40 +0800 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-04-01 08:38:19 +0200 |
commit | 699d17bc14edceb710998349fa74e66be3042372 (patch) | |
tree | 5d57dfcf969fda7146ff835c9fe5d6e7c882f260 /arch | |
parent | 0c4ec16b86e6a823bc6e9fbe08a724d517eb3c24 (diff) | |
download | op-kernel-dev-699d17bc14edceb710998349fa74e66be3042372.zip op-kernel-dev-699d17bc14edceb710998349fa74e66be3042372.tar.gz |
microblaze: Add a missing single quote to make 'make help' happy
'make ARCH=microblaze help' fails with the following error due to a
missing single quote.
/bin/sh: -c: line 0: unexpected EOF while looking for matching `''
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [help] Error 2
Signed-off-by: Arun Bhanu <arun@bhanu.net>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/microblaze/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile index 836832d..538afce 100644 --- a/arch/microblaze/Makefile +++ b/arch/microblaze/Makefile @@ -84,7 +84,7 @@ define archhelp echo '* linux.bin - Create raw binary' echo ' linux.bin.gz - Create compressed raw binary' echo ' simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in' - echo ' - stripped elf with fdt blob + echo ' - stripped elf with fdt blob' echo ' simpleImage.<dt>.unstrip - full ELF image with fdt blob' echo ' *_defconfig - Select default config from arch/microblaze/configs' echo '' |