From patchwork Tue Oct 12 13:00:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 67573 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 ozlabs.org (Postfix) with ESMTPS id D2462B70DE for ; Wed, 13 Oct 2010 00:36:29 +1100 (EST) Received: from localhost ([127.0.0.1]:37794 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5f1m-0002gM-Oi for incoming@patchwork.ozlabs.org; Tue, 12 Oct 2010 09:36:26 -0400 Received: from [140.186.70.92] (port=41094 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eUP-0007aG-AW for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eUI-0004oO-0Z for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:56 -0400 Received: from mail-qy0-f180.google.com ([209.85.216.180]:60844) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5eUH-0004WW-TD for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:49 -0400 Received: by mail-qy0-f180.google.com with SMTP id 1so4942468qyk.4 for ; Tue, 12 Oct 2010 06:01:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:to:subject:date :message-id:x-mailer:in-reply-to:references; bh=IJMkXOsIswm5GdLDIMI5N/cGK/LoNunliiA6ry4f+xo=; b=Fb8DrY4CY1lB3RO3kV2/KeCvCvWcmFXnpvCdA6VRVGTrqJkW1y9UH67elwqTuYiQX6 h6gwp28cr0VROQhOtD5zpuam959LuM5TiSrPyys7X11oaFDoFOzrmfCNZSQblxRfa0KV HsQBEQO+BC5jVkmtdBGRjLvkANo4LwYE0imgQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; b=eEkO8hUXlbvqH20MjVAp4Np1r+r0UGyH9xoUrsmiTvOwVGTs5Zs1cXUhYLghkElPGj tKJAxssWSzkbVJ4BiN4kpshirsZ2bw1LVfWgcrVIcDyftbEiWMh2a2XPCxZ5erHFH/gI pb2U1LhkB8H4tIMXqfWJ5X/mQX60hXbNES014= Received: by 10.224.177.212 with SMTP id bj20mr5683492qab.358.1286888509284; Tue, 12 Oct 2010 06:01:49 -0700 (PDT) Received: from localhost.localdomain (nat-pool-brq-t.redhat.com [209.132.186.34]) by mx.google.com with ESMTPS id s34sm5931078qcp.20.2010.10.12.06.01.47 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 12 Oct 2010 06:01:48 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Tue, 12 Oct 2010 15:00:40 +0200 Message-Id: <1286888457-5033-23-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> References: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH 22/39] make trace options use autoconfy names 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 These are not in any release, so I am just renaming them. Signed-off-by: Paolo Bonzini --- configure | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 76626a4..5786729 100755 --- a/configure +++ b/configure @@ -540,9 +540,9 @@ for opt do ;; --target-list=*) target_list="$optarg" ;; - --trace-backend=*) trace_backend="$optarg" + --enable-trace-backend=*) trace_backend="$optarg" ;; - --trace-file=*) trace_file="$optarg" + --enable-trace-file=*) trace_file="$optarg" ;; --enable-gprof) gprof="yes" ;; @@ -921,8 +921,8 @@ echo " --enable-docs enable documentation build" echo " --disable-docs disable documentation build" echo " --disable-vhost-net disable vhost-net acceleration support" echo " --enable-vhost-net enable vhost-net acceleration support" -echo " --trace-backend=B Trace backend nop simple ust" -echo " --trace-file=NAME Full PATH,NAME of file to store traces" +echo " --enable-trace-backend=B Trace backend nop simple ust" +echo " --enable-trace-file=NAME Full PATH,NAME of file to store traces" echo " Default:trace-" echo " --disable-spice disable spice" echo " --enable-spice enable spice"