* [Qemu-devel] [PATCH] Reformat quiet build
@ 2009-01-23 15:11 Jan Kiszka
2009-01-24 15:08 ` Aurelien Jarno
0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2009-01-23 15:11 UTC (permalink / raw)
To: qemu-devel
Indent and align the quiet build messages more like Linux - improves
readability of this great feature even more.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
rules.mak | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/rules.mak b/rules.mak
index a4955da..c4bb65b 100644
--- a/rules.mak
+++ b/rules.mak
@@ -1,19 +1,19 @@
%.o: %.c
- $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<,CC $@)
+ $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<," CC $@")
%.o: %.S
- $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<,AS $@)
+ $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<," AS $@")
%.o: %.m
- $(call quiet-command,$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<,OBJC $@)
+ $(call quiet-command,$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<," OBJC $@")
-LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(LIBS),LINK $@)
+LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)," LINK $@")
%$(EXESUF): %.o
$(LINK)
%.a:
- $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^,AR $@)
+ $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^," AR $@")
quiet-command = $(if $(V),$1,@echo $2 && $1)
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] Reformat quiet build
2009-01-23 15:11 [Qemu-devel] [PATCH] Reformat quiet build Jan Kiszka
@ 2009-01-24 15:08 ` Aurelien Jarno
0 siblings, 0 replies; 2+ messages in thread
From: Aurelien Jarno @ 2009-01-24 15:08 UTC (permalink / raw)
To: Jan Kiszka; +Cc: qemu-devel
On Fri, Jan 23, 2009 at 04:11:38PM +0100, Jan Kiszka wrote:
> Indent and align the quiet build messages more like Linux - improves
> readability of this great feature even more.
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Thanks, applied.
> ---
>
> rules.mak | 10 +++++-----
> 1 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/rules.mak b/rules.mak
> index a4955da..c4bb65b 100644
> --- a/rules.mak
> +++ b/rules.mak
> @@ -1,19 +1,19 @@
>
> %.o: %.c
> - $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<,CC $@)
> + $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<," CC $@")
>
> %.o: %.S
> - $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<,AS $@)
> + $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<," AS $@")
>
> %.o: %.m
> - $(call quiet-command,$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<,OBJC $@)
> + $(call quiet-command,$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<," OBJC $@")
>
> -LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(LIBS),LINK $@)
> +LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)," LINK $@")
>
> %$(EXESUF): %.o
> $(LINK)
>
> %.a:
> - $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^,AR $@)
> + $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^," AR $@")
>
> quiet-command = $(if $(V),$1,@echo $2 && $1)
>
>
>
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-24 15:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-23 15:11 [Qemu-devel] [PATCH] Reformat quiet build Jan Kiszka
2009-01-24 15:08 ` Aurelien Jarno
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.