mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-12 20:31:49 +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; }
|