17-backport-kecho.patch 742 B

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