From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbMEc-0003I8-1Y for qemu-devel@nongnu.org; Wed, 21 Nov 2012 21:09:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TbMEb-0007Bm-1x for qemu-devel@nongnu.org; Wed, 21 Nov 2012 21:09:45 -0500 Received: from e28smtp03.in.ibm.com ([122.248.162.3]:54772) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TbMEa-00076S-E6 for qemu-devel@nongnu.org; Wed, 21 Nov 2012 21:09:44 -0500 Received: from /spool/local by e28smtp03.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 22 Nov 2012 07:39:34 +0530 Received: from d28av02.in.ibm.com (d28av02.in.ibm.com [9.184.220.64]) by d28relay04.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id qAM29U3248693482 for ; Thu, 22 Nov 2012 07:39:31 +0530 Received: from d28av02.in.ibm.com (loopback [127.0.0.1]) by d28av02.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id qAM7bJmG016649 for ; Thu, 22 Nov 2012 18:37:20 +1100 From: Wenchao Xia Date: Thu, 22 Nov 2012 10:07:46 +0800 Message-Id: <1353550066-3923-1-git-send-email-xiawenc@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH V3] Build system fix distclean error for pixman List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, peter.maydell@linaro.org, aliguori@us.ibm.com, stefanha@gmail.com, pbonzini@redhat.com, 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 Reviewed-by: Peter Maydell --- 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