Sam Ravnborg pointed out that calling if_changed was redundant in the
rule since a prerequisite had to have changed for us to get there.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
 
 $(obj)/uImage: $(obj)/vmlinux.gz
        $(Q)rm -f $@
-       $(call if_changed,uimage)
+       $(call cmd,uimage)
        @echo -n '  Image: $@ '
        @if [ -f $@ ]; then echo 'is ready' ; else echo 'not made'; fi
 
 
 targets += uImage
 $(obj)/uImage: $(obj)/vmlinux.gz
        $(Q)rm -f $@
-       $(call if_changed,uimage)
+       $(call cmd,uimage)
        @echo -n '  Image: $@ '
        @if [ -f $@ ]; then echo 'is ready' ; else echo 'not made'; fi