qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH V3] Build system fix distclean error for pixman
@ 2012-11-22  2:07 Wenchao Xia
  2012-11-22  8:38 ` [Qemu-devel] [PATCH V3 for-1.3] " Peter Maydell
  2012-11-22 10:20 ` [Qemu-devel] [PATCH " Stefan Hajnoczi
  0 siblings, 2 replies; 4+ messages in thread
From: Wenchao Xia @ 2012-11-22  2:07 UTC (permalink / raw)
  To: qemu-devel
  Cc: kwolf, peter.maydell, aliguori, stefanha, pbonzini, Wenchao Xia

  Currently Makefile test if pixman have configure log, but the script directly
return error if that file do not exist. This patch fix it.

v2: print out the command.
v3: resend as a stand alone fix patch, add reviewer.

Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 3e8d441..9ecbcbb 100644
--- a/Makefile
+++ b/Makefile
@@ -286,7 +286,7 @@ distclean: clean
 	for d in $(TARGET_DIRS) $(QEMULIBS); do \
 	rm -rf $$d || exit 1 ; \
         done
-	test -f pixman/config.log && make -C pixman distclean
+	if test -f pixman/config.log; then make -C pixman distclean; fi
 
 KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
 ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH V3 for-1.3] Build system fix distclean error for pixman
  2012-11-22  2:07 [Qemu-devel] [PATCH V3] Build system fix distclean error for pixman Wenchao Xia
@ 2012-11-22  8:38 ` Peter Maydell
  2012-11-22  8:46   ` [Qemu-devel] [PATCH for 1.3 V3] " Wenchao Xia
  2012-11-22 10:20 ` [Qemu-devel] [PATCH " Stefan Hajnoczi
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Maydell @ 2012-11-22  8:38 UTC (permalink / raw)
  To: Wenchao Xia; +Cc: kwolf, pbonzini, aliguori, qemu-devel, stefanha

On 22 November 2012 02:07, Wenchao Xia <xiawenc@linux.vnet.ibm.com> wrote:
>   Currently Makefile test if pixman have configure log, but the script directly
> return error if that file do not exist. This patch fix it.
>
> v2: print out the command.
> v3: resend as a stand alone fix patch, add reviewer.

Really v2/v3 info should go below '---' but never mind.

You didn't put "for-1.3" in the patch tag in the subject
so I have added it.

-- PMM

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH for 1.3 V3] Build system fix distclean error for pixman
  2012-11-22  8:38 ` [Qemu-devel] [PATCH V3 for-1.3] " Peter Maydell
@ 2012-11-22  8:46   ` Wenchao Xia
  0 siblings, 0 replies; 4+ messages in thread
From: Wenchao Xia @ 2012-11-22  8:46 UTC (permalink / raw)
  To: Peter Maydell; +Cc: kwolf, pbonzini, aliguori, qemu-devel, stefanha


> On 22 November 2012 02:07, Wenchao Xia <xiawenc@linux.vnet.ibm.com> wrote:
>>    Currently Makefile test if pixman have configure log, but the script directly
>> return error if that file do not exist. This patch fix it.
>>
>> v2: print out the command.
>> v3: resend as a stand alone fix patch, add reviewer.
>
> Really v2/v3 info should go below '---' but never mind.
>
> You didn't put "for-1.3" in the patch tag in the subject
> so I have added it.
>
> -- PMM
>
   Thanks for the correcting, by referencing to other patches for v1.3,
I changed the subject to PATCH for 1.3 V3, hope it can draw attention.

-- 
Best Regards

Wenchao Xia

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH V3] Build system fix distclean error for pixman
  2012-11-22  2:07 [Qemu-devel] [PATCH V3] Build system fix distclean error for pixman Wenchao Xia
  2012-11-22  8:38 ` [Qemu-devel] [PATCH V3 for-1.3] " Peter Maydell
@ 2012-11-22 10:20 ` Stefan Hajnoczi
  1 sibling, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2012-11-22 10:20 UTC (permalink / raw)
  To: Wenchao Xia; +Cc: kwolf, pbonzini, aliguori, qemu-devel, peter.maydell

On Thu, Nov 22, 2012 at 10:07:46AM +0800, Wenchao Xia wrote:
>   Currently Makefile test if pixman have configure log, but the script directly
> return error if that file do not exist. This patch fix it.
> 
> v2: print out the command.
> v3: resend as a stand alone fix patch, add reviewer.
> 
> Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  Makefile |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-11-22 10:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-22  2:07 [Qemu-devel] [PATCH V3] Build system fix distclean error for pixman Wenchao Xia
2012-11-22  8:38 ` [Qemu-devel] [PATCH V3 for-1.3] " Peter Maydell
2012-11-22  8:46   ` [Qemu-devel] [PATCH for 1.3 V3] " Wenchao Xia
2012-11-22 10:20 ` [Qemu-devel] [PATCH " Stefan Hajnoczi

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).