diff options
author | <jgarzik@pretzel.yyz.us> | 2005-06-03 00:43:09 +0200 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-03 00:43:09 +0200 |
commit | d7aaf48128ec7fcefcee92ea22833afc1a80e268 (patch) | |
tree | 16ff78f6be6a5519944bb7bfc6034dfbd71ae97f /arch/ppc/boot/images/Makefile | |
parent | libata: kernel-doc warning fixes (diff) | |
parent | [PATCH] ppc64: Fix result code handling in prom_init (diff) | |
download | linux-d7aaf48128ec7fcefcee92ea22833afc1a80e268.tar.xz linux-d7aaf48128ec7fcefcee92ea22833afc1a80e268.zip |
Automatic merge of /spare/repo/linux-2.6/.git branch HEAD
Diffstat (limited to 'arch/ppc/boot/images/Makefile')
-rw-r--r-- | arch/ppc/boot/images/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ppc/boot/images/Makefile b/arch/ppc/boot/images/Makefile index f850fb0fb511..c9ac5f5fa9e4 100644 --- a/arch/ppc/boot/images/Makefile +++ b/arch/ppc/boot/images/Makefile @@ -22,7 +22,8 @@ targets += uImage $(obj)/uImage: $(obj)/vmlinux.gz $(Q)rm -f $@ $(call if_changed,uimage) - @echo ' Image: $@' $(if $(wildcard $@),'is ready','not made') + @echo -n ' Image: $@ ' + @if [ -f $@ ]; then echo 'is ready' ; else echo 'not made'; fi # Files generated that shall be removed upon make clean clean-files := sImage vmapus vmlinux* miboot* zImage* uImage |