From patchwork Tue Jan 1 17:33:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 208953 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 2F44B2C0097 for ; Wed, 2 Jan 2013 04:34:02 +1100 (EST) Received: from localhost ([::1]:37489 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tq5iy-0008J7-Oc for incoming@patchwork.ozlabs.org; Tue, 01 Jan 2013 12:34:00 -0500 Received: from eggs.gnu.org ([208.118.235.92]:35551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tq5ip-0008J2-4N for qemu-devel@nongnu.org; Tue, 01 Jan 2013 12:33:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tq5im-0001h6-LI for qemu-devel@nongnu.org; Tue, 01 Jan 2013 12:33:50 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:49329) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tq5im-0001h0-EF; Tue, 01 Jan 2013 12:33:48 -0500 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id C6191728003D; Tue, 1 Jan 2013 18:33:46 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id C15y-6u2IJ+B; Tue, 1 Jan 2013 18:33:46 +0100 (CET) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id 398D5728004C; Tue, 1 Jan 2013 18:33:46 +0100 (CET) From: Stefan Weil To: qemu-trivial@nongnu.org Date: Tue, 1 Jan 2013 18:33:44 +0100 Message-Id: <1357061624-9469-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 78.47.199.172 Cc: Paolo Bonzini , qemu-devel@nongnu.org, Stefan Weil Subject: [Qemu-devel] [PATCH] configure: Write new file "config-all-disas.mak" when running configure 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 Incremental builds added new lines to that file each time when configure was run. Now a new file with a comment line is written. Signed-off-by: Stefan Weil --- The file still contains lots of duplicated entries, but they don't cause problems. Regards and happy new year Stefan configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index b0c7e54..2fafa8a 100755 --- a/configure +++ b/configure @@ -3297,6 +3297,8 @@ fi config_host_mak="config-host.mak" config_host_ld="config-host.ld" +echo "# Automatically generated by configure - do not modify" >config-all-disas.mak + echo "# Automatically generated by configure - do not modify" > $config_host_mak printf "# Configured with:" >> $config_host_mak printf " '%s'" "$0" "$@" >> $config_host_mak