From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41338 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eUf-0007ep-V1 for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eUV-0004wt-OO for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:10 -0400 Received: from mail-qw0-f45.google.com ([209.85.216.45]:52643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5eUV-0004Mc-M1 for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:03 -0400 Received: by mail-qw0-f45.google.com with SMTP id 5so1841033qwh.4 for ; Tue, 12 Oct 2010 06:02:03 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 12 Oct 2010 15:00:47 +0200 Message-Id: <1286888457-5033-30-git-send-email-pbonzini@redhat.com> In-Reply-To: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> References: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 29/39] add autoconfy alias --enable-targets for --target-list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Paolo Bonzini --- configure | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b439bc2..e1eeda2 100755 --- a/configure +++ b/configure @@ -538,7 +538,7 @@ for opt do ;; --cpu=*) ;; - --target-list=*) target_list="$optarg" + --enable-targets=*|--target-list=*) target_list="$optarg" ;; --enable-trace-backend=*) trace_backend="$optarg" ;; @@ -826,7 +826,6 @@ EOF echo "Standard options:" echo " --help print this message" echo " --prefix=PREFIX install in PREFIX [$prefix]" -echo " --target-list=LIST set target list [$target_list]" echo "" echo "Libraries:" echo " --with-fmod-lib path to FMOD library" @@ -835,6 +834,7 @@ echo " --with-oss-lib path to OSS library" echo "" echo "Advanced options (experts only):" echo " --source-path=PATH path of source code [$source_path]" +echo " --enable-targets=LIST choose compiled targets [$target_list]" echo " --with-sysroot=PREFIX where to find shared libraries, etc." echo " use %M for cpu name [$sysroot]" echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" @@ -940,6 +940,7 @@ echo " --block-drv-whitelist=L set block driver list for QEMU (not qemu-img)" echo " --make=MAKE use specified make [$make]" echo " --install=INSTALL use specified install [$install]" echo " --static enable static build [$static]" +echo " --target-list=LIST set target list [$target_list]" echo "" echo "Some influential environment variables can be passed on the command line:" echo " CC C compiler command" -- 1.7.2.3