* [Qemu-devel] [PATCH] Clean libhw subdirs as well
@ 2010-05-15 11:03 Jan Kiszka
2010-05-16 9:42 ` [Qemu-devel] " Paolo Bonzini
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jan Kiszka @ 2010-05-15 11:03 UTC (permalink / raw)
To: qemu-devel, Juan Quintela
From: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
Makefile.hw | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile.hw b/Makefile.hw
index be35359..b9181ab 100644
--- a/Makefile.hw
+++ b/Makefile.hw
@@ -18,7 +18,7 @@ all: $(hw-obj-y)
@true
clean:
- rm -f *.o *.d *.a *~
+ rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
# Include automatically generated dependency files
-include $(wildcard *.d */*.d)
--
1.6.0.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Qemu-devel] Re: [PATCH] Clean libhw subdirs as well
2010-05-15 11:03 [Qemu-devel] [PATCH] Clean libhw subdirs as well Jan Kiszka
@ 2010-05-16 9:42 ` Paolo Bonzini
2010-05-16 9:48 ` Juan Quintela
2010-05-22 9:28 ` [Qemu-devel] " Blue Swirl
2 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2010-05-16 9:42 UTC (permalink / raw)
To: Jan Kiszka; +Cc: qemu-devel, Juan Quintela
On 05/15/2010 01:03 PM, Jan Kiszka wrote:
> From: Jan Kiszka<jan.kiszka@siemens.com>
>
> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>
> ---
> Makefile.hw | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/Makefile.hw b/Makefile.hw
> index be35359..b9181ab 100644
> --- a/Makefile.hw
> +++ b/Makefile.hw
> @@ -18,7 +18,7 @@ all: $(hw-obj-y)
> @true
>
> clean:
> - rm -f *.o *.d *.a *~
> + rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
>
> # Include automatically generated dependency files
> -include $(wildcard *.d */*.d)
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] Re: [PATCH] Clean libhw subdirs as well
2010-05-15 11:03 [Qemu-devel] [PATCH] Clean libhw subdirs as well Jan Kiszka
2010-05-16 9:42 ` [Qemu-devel] " Paolo Bonzini
@ 2010-05-16 9:48 ` Juan Quintela
2010-05-22 9:28 ` [Qemu-devel] " Blue Swirl
2 siblings, 0 replies; 4+ messages in thread
From: Juan Quintela @ 2010-05-16 9:48 UTC (permalink / raw)
To: Jan Kiszka; +Cc: qemu-devel
Jan Kiszka <jan.kiszka@web.de> wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
> Makefile.hw | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/Makefile.hw b/Makefile.hw
> index be35359..b9181ab 100644
> --- a/Makefile.hw
> +++ b/Makefile.hw
> @@ -18,7 +18,7 @@ all: $(hw-obj-y)
> @true
>
> clean:
> - rm -f *.o *.d *.a *~
> + rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
>
> # Include automatically generated dependency files
> -include $(wildcard *.d */*.d)
Acked-by: Juan Quintela <quintela@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] Clean libhw subdirs as well
2010-05-15 11:03 [Qemu-devel] [PATCH] Clean libhw subdirs as well Jan Kiszka
2010-05-16 9:42 ` [Qemu-devel] " Paolo Bonzini
2010-05-16 9:48 ` Juan Quintela
@ 2010-05-22 9:28 ` Blue Swirl
2 siblings, 0 replies; 4+ messages in thread
From: Blue Swirl @ 2010-05-22 9:28 UTC (permalink / raw)
To: Jan Kiszka; +Cc: qemu-devel, Juan Quintela
Thanks, applied.
On Sat, May 15, 2010 at 11:03 AM, Jan Kiszka <jan.kiszka@web.de> wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
> Makefile.hw | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/Makefile.hw b/Makefile.hw
> index be35359..b9181ab 100644
> --- a/Makefile.hw
> +++ b/Makefile.hw
> @@ -18,7 +18,7 @@ all: $(hw-obj-y)
> @true
>
> clean:
> - rm -f *.o *.d *.a *~
> + rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
>
> # Include automatically generated dependency files
> -include $(wildcard *.d */*.d)
> --
> 1.6.0.2
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-05-22 9:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-15 11:03 [Qemu-devel] [PATCH] Clean libhw subdirs as well Jan Kiszka
2010-05-16 9:42 ` [Qemu-devel] " Paolo Bonzini
2010-05-16 9:48 ` Juan Quintela
2010-05-22 9:28 ` [Qemu-devel] " Blue Swirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).