From patchwork Thu Aug 20 23:37:00 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 31783 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 35565B7BA4 for ; Fri, 21 Aug 2009 09:41:46 +1000 (EST) Received: from localhost ([127.0.0.1]:51174 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MeHGJ-0004HN-9o for incoming@patchwork.ozlabs.org; Thu, 20 Aug 2009 19:41:43 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MeHEF-00033f-PR for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:35 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MeHEA-0002xb-Na for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:35 -0400 Received: from [199.232.76.173] (port=39418 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MeHEA-0002xP-DZ for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47463) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MeHE9-0006EV-RT for qemu-devel@nongnu.org; Thu, 20 Aug 2009 19:39:30 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7KNdTXv006323 for ; Thu, 20 Aug 2009 19:39:29 -0400 Received: from localhost.localdomain (vpn1-4-148.ams2.redhat.com [10.36.4.148]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7KNdQqi026026; Thu, 20 Aug 2009 19:39:28 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Fri, 21 Aug 2009 01:37:00 +0200 Message-Id: <97dae855ab5f0eca022e13263b8c4216c50b186d.1250810973.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 01/14] Generate config-host.h after dealing with all the targets X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- configure | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 0b2c721..e0928fe 100755 --- a/configure +++ b/configure @@ -1793,10 +1793,6 @@ echo "LIBS+=$LIBS" >> $config_host_mak echo "LIBS_TOOLS+=$libs_tools" >> $config_host_mak echo "EXESUF=$EXESUF" >> $config_host_mak -echo "/* Automatically generated by configure - do not modify */" > $config_host_h - -/bin/sh $source_path/create_config < $config_host_mak >> $config_host_h - if test -f ${config_host_h}~ ; then if cmp -s $config_host_h ${config_host_h}~ ; then mv ${config_host_h}~ $config_host_h @@ -2227,6 +2223,10 @@ fi done # for target in $targets +echo "/* Automatically generated by configure - do not modify */" > $config_host_h + +/bin/sh $source_path/create_config < $config_host_mak >> $config_host_h + # build tree in object directory if source path is different from current one if test "$source_path_used" = "yes" ; then DIRS="tests tests/cris slirp audio block pc-bios/optionrom"