From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFV0K-0008S3-Rr for qemu-devel@nongnu.org; Wed, 04 Apr 2012 14:32:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFV0B-0001jm-KZ for qemu-devel@nongnu.org; Wed, 04 Apr 2012 14:32:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:65265) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFV0B-0001cp-CG for qemu-devel@nongnu.org; Wed, 04 Apr 2012 14:32:15 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q34IW9sP022758 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 4 Apr 2012 14:32:10 -0400 From: Eduardo Habkost Date: Wed, 4 Apr 2012 15:32:13 -0300 Message-Id: <1333564345-13011-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1333564345-13011-1-git-send-email-ehabkost@redhat.com> References: <1333564345-13011-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 02/14] configure: rename $docdir to $qemu_docdir List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini The autoconf "docdir" variable is used for the program-specific subdirectory, but anyway it's better to make it clear that the variable is used for the qemu-specific subdirectory path. Signed-off-by: Eduardo Habkost --- configure | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 97c856a..0cdc9ac 100755 --- a/configure +++ b/configure @@ -156,7 +156,7 @@ EXESUF="" prefix="/usr/local" mandir="\${prefix}/share/man" qemu_datadir="\${prefix}/share/qemu" -docdir="\${prefix}/share/doc/qemu" +qemu_docdir="\${prefix}/share/doc/qemu" bindir="\${prefix}/bin" libdir="\${prefix}/lib" includedir="\${prefix}/include" @@ -522,7 +522,7 @@ EOF prefix="c:/Program Files/Qemu" mandir="\${prefix}" qemu_datadir="\${prefix}" - docdir="\${prefix}" + qemu_docdir="\${prefix}" bindir="\${prefix}" sysconfdir="\${prefix}" confsuffix="" @@ -591,7 +591,7 @@ for opt do ;; --datadir=*) qemu_datadir="$optarg" ;; - --docdir=*) docdir="$optarg" + --docdir=*) qemu_docdir="$optarg" ;; --sysconfdir=*) sysconfdir="$optarg" ;; @@ -2982,7 +2982,7 @@ echo "includedir=$includedir" >> $config_host_mak echo "mandir=$mandir" >> $config_host_mak echo "datadir=$qemu_datadir" >> $config_host_mak echo "sysconfdir=$sysconfdir" >> $config_host_mak -echo "docdir=$docdir" >> $config_host_mak +echo "docdir=$qemu_docdir" >> $config_host_mak echo "confdir=$confdir" >> $config_host_mak echo "libexecdir=\${prefix}/libexec" >> $config_host_mak echo "CONFIG_QEMU_SHAREDIR=\"$prefix$datasuffix\"" >> $config_host_mak -- 1.7.3.2