From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Tq5iz-00008G-Gr for mharc-qemu-trivial@gnu.org; Tue, 01 Jan 2013 12:34:01 -0500 Received: from eggs.gnu.org ([208.118.235.92]:35570) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tq5iv-0008NY-1m for qemu-trivial@nongnu.org; Tue, 01 Jan 2013 12:33:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tq5is-0001ic-Iy for qemu-trivial@nongnu.org; Tue, 01 Jan 2013 12:33:56 -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-trivial] [PATCH] configure: Write new file "config-all-disas.mak" when running configure X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jan 2013 17:34:00 -0000 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 -- 1.7.10.4