diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-25 12:36:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-25 12:36:42 -0700 |
commit | ad5e1b0f5d913d2c8bddfba81049cc07228da1a6 (patch) | |
tree | 97deddb681735de8980e56f2153b6a3ec02d8d88 /Documentation | |
parent | 6f97b220f414e3599ea5374905ba6d0dc47d63b0 (diff) | |
parent | 4217516e52949e6550ff01d57f92b9b24ce04be1 (diff) | |
download | linux-3.10-ad5e1b0f5d913d2c8bddfba81049cc07228da1a6.tar.gz linux-3.10-ad5e1b0f5d913d2c8bddfba81049cc07228da1a6.tar.bz2 linux-3.10-ad5e1b0f5d913d2c8bddfba81049cc07228da1a6.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild:
kconfig: fix broken target update-po-config
kbuild: silence documentation GEN xml messages according to $(quiet)
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index b2b6366bba5..83966e94cc3 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile @@ -187,8 +187,11 @@ quiet_cmd_fig2png = FIG2PNG $@ ### # Rule to convert a .c file to inline XML documentation + gen_xml = : + quiet_gen_xml = echo ' GEN $@' +silent_gen_xml = : %.xml: %.c - @echo ' GEN $@' + @$($(quiet)gen_xml) @( \ echo "<programlisting>"; \ expand --tabs=8 < $< | \ |