All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2 1/4] DocBook/Makefile: Make it less verbose
@ 2010-02-25 17:33 Mauro Carvalho Chehab
  0 siblings, 0 replies; only message in thread
From: Mauro Carvalho Chehab @ 2010-02-25 17:33 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Linux Media Mailing List

Don't show build commants for html main file and media dir cration if V=0.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

Conflicts:

	Documentation/DocBook/Makefile

diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile
index 325cfd1..7c590ef 100644
--- a/Documentation/DocBook/Makefile
+++ b/Documentation/DocBook/Makefile
@@ -46,8 +46,9 @@ pdfdocs: $(PDF)
 
 HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS)))
 htmldocs: $(HTML)
-	$(call build_main_index)
-	$(call build_images)
+	@$($(quiet)cmd_build_main_index)
+	@$($(call build_main_index))
+	@($(call build_images))
 
 MAN := $(patsubst %.xml, %.9, $(BOOKS))
 mandocs: $(MAN)
@@ -145,6 +146,8 @@ quiet_cmd_db2pdf = PDF     $@
 %.pdf : %.xml
 	$(call cmd,db2pdf)
 
+      cmd_build_main_index = :
+quiet_cmd_build_main_index = echo '  BUILD   $@'
 
 index = index.html
 main_idx = Documentation/DocBook/$(index)
-- 
1.6.6.1



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-02-25 17:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-25 17:33 [PATCHv2 1/4] DocBook/Makefile: Make it less verbose Mauro Carvalho Chehab

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.