1This commit added kecho to scripts/Kbuild.include (and doc). 2Backported just Kbuild.include part to Makefile 3 4commit 5410ecc0def8955ab99810c5626cc7e156991896 5Author: Mike Frysinger <vapier@gentoo.org> 6Date: Thu Nov 6 03:31:34 2008 -0500 7 8 kbuild: introduce $(kecho) convenience echo 9 10Index: kconfig/Makefile 11=================================================================== 12--- kconfig.orig/Makefile 13+++ kconfig/Makefile 14@@ -6,6 +6,12 @@ 15 PHONY += xconfig gconfig menuconfig config syncconfig update-po-config \ 16 localmodconfig localyesconfig 17 18+# Easy method for doing a status message 19+ kecho := : 20+ quiet_kecho := echo 21+silent_kecho := : 22+kecho := $($(quiet)kecho) 23+ 24 ifdef KBUILD_KCONFIG 25 Kconfig := $(KBUILD_KCONFIG) 26 else 27