Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Wenchao Xia
于 2012-11-16 18:38, Gerd Hoffmann 写道: On 11/16/12 11:26, Peter Maydell wrote: On 16 November 2012 10:23, Paolo Bonzini wrote: Il 16/11/2012 10:27, Peter Maydell ha scritto: On 16 November 2012 05:05, Wenchao Xia wrote: - test -f pixman/config.log && make -C pixman distclean + @i

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Wenchao Xia
于 2012-11-16 18:23, Paolo Bonzini 写道: Il 16/11/2012 10:27, Peter Maydell ha scritto: On 16 November 2012 05:05, Wenchao Xia wrote: Currently if pixman have no config.log inside, make file still try to clean it resulting error. This patch fix it. - test -f pixman/config.log && make -C

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Gerd Hoffmann
On 11/16/12 11:26, Peter Maydell wrote: > On 16 November 2012 10:23, Paolo Bonzini wrote: >> Il 16/11/2012 10:27, Peter Maydell ha scritto: >>> On 16 November 2012 05:05, Wenchao Xia wrote: - test -f pixman/config.log && make -C pixman distclean + @if test -f pixman/config.l

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Wenchao Xia
于 2012-11-16 18:16, Peter Maydell 写道: On 16 November 2012 10:08, Wenchao Xia wrote: 于 2012-11-16 17:27, Peter Maydell 写道: On 16 November 2012 05:05, Wenchao Xia wrote: - test -f pixman/config.log && make -C pixman distclean + @if test -f pixman/config.log; \ + then \ +

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Peter Maydell
On 16 November 2012 10:23, Paolo Bonzini wrote: > Il 16/11/2012 10:27, Peter Maydell ha scritto: >> On 16 November 2012 05:05, Wenchao Xia wrote: >>> - test -f pixman/config.log && make -C pixman distclean >>> + @if test -f pixman/config.log; \ >>> + then \ >>> + m

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Paolo Bonzini
Il 16/11/2012 10:27, Peter Maydell ha scritto: > On 16 November 2012 05:05, Wenchao Xia wrote: >> Currently if pixman have no config.log inside, make file still >> try to clean it resulting error. This patch fix it. >> >> - test -f pixman/config.log && make -C pixman distclean >> + @

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Peter Maydell
On 16 November 2012 10:08, Wenchao Xia wrote: > 于 2012-11-16 17:27, Peter Maydell 写道: >> On 16 November 2012 05:05, Wenchao Xia wrote: >>> - test -f pixman/config.log && make -C pixman distclean >>> + @if test -f pixman/config.log; \ >>> + then \ >>> + make -C pixm

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Wenchao Xia
于 2012-11-16 17:27, Peter Maydell 写道: On 16 November 2012 05:05, Wenchao Xia wrote: Currently if pixman have no config.log inside, make file still try to clean it resulting error. This patch fix it. - test -f pixman/config.log && make -C pixman distclean + @if test -f pixman/con

Re: [Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-16 Thread Peter Maydell
On 16 November 2012 05:05, Wenchao Xia wrote: > Currently if pixman have no config.log inside, make file still > try to clean it resulting error. This patch fix it. > > - test -f pixman/config.log && make -C pixman distclean > + @if test -f pixman/config.log; \ > + then \ > +

[Qemu-devel] [PATCH 1/2] Buildsystem fix distclean error in pixman

2012-11-15 Thread Wenchao Xia
Currently if pixman have no config.log inside, make file still try to clean it resulting error. This patch fix it. Signed-off-by: Wenchao Xia --- Makefile |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 81c660f..f40885b 100644 --- a/Makefi