From patchwork Tue Nov 20 09:46:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wayne Xia X-Patchwork-Id: 200274 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 184012C007D for ; Tue, 20 Nov 2012 20:48:49 +1100 (EST) Received: from localhost ([::1]:52140 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TakRj-0005T3-7j for incoming@patchwork.ozlabs.org; Tue, 20 Nov 2012 04:48:47 -0500 Received: from eggs.gnu.org ([208.118.235.92]:49264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TakRP-00059J-4H for qemu-devel@nongnu.org; Tue, 20 Nov 2012 04:48:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TakRI-0004YF-2c for qemu-devel@nongnu.org; Tue, 20 Nov 2012 04:48:27 -0500 Received: from e28smtp03.in.ibm.com ([122.248.162.3]:50581) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TakRH-0004WA-Dr for qemu-devel@nongnu.org; Tue, 20 Nov 2012 04:48:19 -0500 Received: from /spool/local by e28smtp03.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 20 Nov 2012 15:18:16 +0530 Received: from d28relay04.in.ibm.com (9.184.220.61) by e28smtp03.in.ibm.com (192.168.1.133) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 20 Nov 2012 15:18:14 +0530 Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay04.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id qAK9mC0s5439974 for ; Tue, 20 Nov 2012 15:18:12 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id qAKFI3sm023040 for ; Tue, 20 Nov 2012 15:18:04 GMT Received: from RedHat62GAWSWenchao ([9.77.180.146]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id qAKFFxVt014693; Tue, 20 Nov 2012 15:18:01 GMT From: Wenchao Xia To: qemu-devel@nongnu.org Date: Tue, 20 Nov 2012 17:46:01 +0800 Message-Id: <1353404767-4495-2-git-send-email-xiawenc@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1353404767-4495-1-git-send-email-xiawenc@linux.vnet.ibm.com> References: <1353404767-4495-1-git-send-email-xiawenc@linux.vnet.ibm.com> x-cbid: 12112009-3864-0000-0000-000005A2CBC8 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 122.248.162.3 Cc: kwolf@redhat.com, peter.maydell@linaro.org, aliguori@us.ibm.com, stefanha@gmail.com, blauwirbel@gmail.com, kraxel@redhat.com, pbonzini@redhat.com, xiawenc@linux.vnet.ibm.com Subject: [Qemu-devel] [PATCH V10 1/7] Buildsystem 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. 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 \