From patchwork Sat Nov 24 09:27:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wayne Xia X-Patchwork-Id: 201446 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4C58E2C008E for ; Sat, 24 Nov 2012 20:30:09 +1100 (EST) Received: from localhost ([::1]:56115 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcC3n-00070k-Mz for incoming@patchwork.ozlabs.org; Sat, 24 Nov 2012 04:30:03 -0500 Received: from eggs.gnu.org ([208.118.235.92]:47900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcC3d-00070Z-H8 for qemu-devel@nongnu.org; Sat, 24 Nov 2012 04:29:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TcC3c-0000iV-Dg for qemu-devel@nongnu.org; Sat, 24 Nov 2012 04:29:53 -0500 Received: from e23smtp03.au.ibm.com ([202.81.31.145]:36578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcC3b-0000i7-SO for qemu-devel@nongnu.org; Sat, 24 Nov 2012 04:29:52 -0500 Received: from /spool/local by e23smtp03.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Sat, 24 Nov 2012 19:26:11 +1000 Received: from d23relay05.au.ibm.com (202.81.31.247) by e23smtp03.au.ibm.com (202.81.31.209) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Sat, 24 Nov 2012 19:26:08 +1000 Received: from d23av01.au.ibm.com (d23av01.au.ibm.com [9.190.234.96]) by d23relay05.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id qAO9Iuua4915586 for ; Sat, 24 Nov 2012 20:18:56 +1100 Received: from d23av01.au.ibm.com (loopback [127.0.0.1]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id qAO9TeMv026063 for ; Sat, 24 Nov 2012 20:29:40 +1100 Received: from RedHat62GAWSWenchao ([9.77.177.254]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id qAO9Rob3025579; Sat, 24 Nov 2012 20:29:38 +1100 From: Wenchao Xia To: qemu-devel@nongnu.org Date: Sat, 24 Nov 2012 17:27:18 +0800 Message-Id: <1353749244-25676-2-git-send-email-xiawenc@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1353749244-25676-1-git-send-email-xiawenc@linux.vnet.ibm.com> References: <1353749244-25676-1-git-send-email-xiawenc@linux.vnet.ibm.com> x-cbid: 12112409-6102-0000-0000-0000029D9F07 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 202.81.31.145 Cc: kwolf@redhat.com, aliguori@us.ibm.com, stefanha@gmail.com, blauwirbel@gmail.com, pbonzini@redhat.com, Wenchao Xia Subject: [Qemu-devel] [PATCH V11 1/7] Build system fix distclean error for pixman X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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. This patch have been sent as a stand alone fix for 1.3, if it is already merged pls ignore it. 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 \