From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41004) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkW4m-0005d4-Ih for qemu-devel@nongnu.org; Sun, 24 Nov 2013 04:34:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VkW4h-0002QB-Ng for qemu-devel@nongnu.org; Sun, 24 Nov 2013 04:34:00 -0500 Received: from mx1.redhat.com ([209.132.183.28]:65277) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VkW4h-0002Q3-Fo for qemu-devel@nongnu.org; Sun, 24 Nov 2013 04:33:55 -0500 Date: Sun, 24 Nov 2013 11:37:04 +0200 From: "Michael S. Tsirkin" Message-ID: <20131124093704.GA26763@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] configure: re-add current options in config-host.mak List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Fam Zheng , Anthony Liguori , Stefan Weil , Stefan Hajnoczi , Paolo Bonzini , Richard Henderson commit bdf523e6923f1e667055e947e71fc600549cefae "configure: Add config.status to recreate the current configuration" moved current configure flags to config.status This makes sense, but this makes it harder to bisect problems that trigger with a specific set of flags only, since old configure is not smart enough to find them there. Simply add the options as a comment in the format old configure expected - they are then ignored by the new configure. Cc: Stefan Weil Cc: Fam Zheng Signed-off-by: Michael S. Tsirkin --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 508f6a5..f6d5ccd 100755 --- a/configure +++ b/configure @@ -3797,6 +3797,7 @@ config_host_mak="config-host.mak" echo "# Automatically generated by configure - do not modify" >config-all-disas.mak echo "# Automatically generated by configure - do not modify" > $config_host_mak +sed -n -e 's/exec/# Configured with:/p' config.status >> $config_host_mak echo >> $config_host_mak echo all: >> $config_host_mak -- MST