From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Stefan Weil Date: Tue, 1 Jan 2013 18:33:44 +0100 Message-Id: <1357061624-9469-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH] configure: Write new file "config-all-disas.mak" when running configure List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org Cc: Paolo Bonzini , qemu-devel@nongnu.org, Stefan Weil 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