mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
2d4d07b97c
Since commit edc88ceb0
(ARM: be really quiet when building with 'make -s') the
following output is generated when building a kernel for ARM:
echo ' Kernel: arch/arm/boot/Image is ready'
Kernel: arch/arm/boot/Image is ready
Building modules, stage 2.
echo ' Kernel: arch/arm/boot/zImage is ready'
Kernel: arch/arm/boot/zImage is ready
As per Documentation/kbuild/makefiles.txt the correct way of using kecho is
'@$(kecho)'.
Make this change so no more unwanted 'echo' messages are displayed.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
11 lines
247 B
Makefile
11 lines
247 B
Makefile
#
|
|
# linux/arch/arm/tools/Makefile
|
|
#
|
|
# Copyright (C) 2001 Russell King
|
|
#
|
|
|
|
include/generated/mach-types.h: $(src)/gen-mach-types $(src)/mach-types
|
|
@$(kecho) ' Generating $@'
|
|
@mkdir -p $(dir $@)
|
|
$(Q)$(AWK) -f $^ > $@ || { rm -f $@; /bin/false; }
|