From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41342 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eUK-0007eq-P7 for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eUD-0004lo-B4 for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:52 -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 1P5eUD-0004Mc-8p for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:45 -0400 Received: by mail-qw0-f45.google.com with SMTP id 5so1841033qwh.4 for ; Tue, 12 Oct 2010 06:01:44 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 12 Oct 2010 15:00:38 +0200 Message-Id: <1286888457-5033-21-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 20/39] add autoconfy aliases MAKE=/INSTALL= for --make and --install 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 | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 8273f84..547f8e9 100755 --- a/configure +++ b/configure @@ -526,9 +526,9 @@ for opt do ;; --host-cc=*) ;; - --make=*) make="$optarg" + MAKE=*|--make=*) make="$optarg" ;; - --install=*) install="$optarg" + INSTALL=*|--install=*) install="$optarg" ;; CPPFLAGS=*) ;; @@ -833,8 +833,6 @@ echo "" echo "Advanced options (experts only):" echo " --source-path=PATH path of source code [$source_path]" echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" -echo " --make=MAKE use specified make [$make]" -echo " --install=INSTALL use specified install [$install]" echo " --static enable static build [$static]" echo " --mandir=PATH install man pages in PATH" echo " --datadir=PATH install firmware in PATH" @@ -931,6 +929,8 @@ echo "Deprecated options:" echo " --cc=CC use C compiler CC [$cc]" echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" +echo " --make=MAKE use specified make [$make]" +echo " --install=INSTALL use specified install [$install]" echo "" echo "Some influential environment variables can be passed on the command line:" echo " CC C compiler command" @@ -940,6 +940,8 @@ echo " CPPFLAGS C preprocessor flags, e.g. -I if you have" echo " headers in a nonstandard directory " echo " LDFLAGS linker flags, e.g. -L if you have libraries in a" echo " nonstandard directory " +echo " MAKE use specified make [$make]" +echo " INSTALL use specified install [$install]" echo "" echo "NOTE: The object files are built at the place where configure is launched" exit 1 @@ -980,7 +982,7 @@ if test "$solaris" = "yes" ; then if has $install; then : else - echo "Solaris install program not found. Use --install=/usr/ucb/install or" + echo "Solaris install program not found. Use INSTALL=/usr/ucb/install or" echo "install fileutils from www.blastwave.org using pkg-get -i fileutils" echo "to get ginstall which is used by default (which lives in /opt/csw/bin)" exit 1 @@ -988,7 +990,7 @@ if test "$solaris" = "yes" ; then if test "`path_of $install`" = "/usr/sbin/install" ; then echo "Error: Solaris /usr/sbin/install is not an appropriate install program." echo "try ginstall from the GNU fileutils available from www.blastwave.org" - echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install" + echo "using pkg-get -i fileutils, or use INSTALL=/usr/ucb/install" exit 1 fi if has ar; then -- 1.7.2.3