From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33977) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDfha-0001F1-Ic for qemu-devel@nongnu.org; Fri, 30 Mar 2012 13:33:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SDfhU-0001qU-SU for qemu-devel@nongnu.org; Fri, 30 Mar 2012 13:33:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60460) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDfhU-0001pP-Hx for qemu-devel@nongnu.org; Fri, 30 Mar 2012 13:33:24 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2UHXMbF012657 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 30 Mar 2012 13:33:22 -0400 From: Eduardo Habkost Date: Fri, 30 Mar 2012 14:32:51 -0300 Message-Id: <1333128782-20589-4-git-send-email-ehabkost@redhat.com> In-Reply-To: <1333128782-20589-1-git-send-email-ehabkost@redhat.com> References: <1333128782-20589-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 03/14] configure: rename $confdir to $qemu_confdir List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini There's no "confdir" variable on Autoconf, but it's good to make it clear that it's a variable for the Qemu-specific subdirectory inside $sysconfdir. Signed-off-by: Eduardo Habkost --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 8e8f2af..ab08498 100755 --- a/configure +++ b/configure @@ -2830,7 +2830,7 @@ if test "$mingw32" = "yes" ; then done fi -confdir=$sysconfdir$confsuffix +qemu_confdir=$sysconfdir$confsuffix tools= if test "$softmmu" = yes ; then @@ -2976,7 +2976,7 @@ echo "mandir=$mandir" >> $config_host_mak echo "datadir=$qemu_datadir" >> $config_host_mak echo "sysconfdir=$sysconfdir" >> $config_host_mak echo "docdir=$qemu_docdir" >> $config_host_mak -echo "confdir=$confdir" >> $config_host_mak +echo "confdir=$qemu_confdir" >> $config_host_mak echo "libexecdir=\${prefix}/libexec" >> $config_host_mak echo "CONFIG_QEMU_SHAREDIR=\"$prefix$datasuffix\"" >> $config_host_mak echo "CONFIG_QEMU_HELPERDIR=\"$prefix/libexec\"" >> $config_host_mak -- 1.7.3.2