From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NYMqo-0008Po-90 for qemu-devel@nongnu.org; Fri, 22 Jan 2010 11:59:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NYMqj-0008HW-Nn for qemu-devel@nongnu.org; Fri, 22 Jan 2010 11:59:13 -0500 Received: from [199.232.76.173] (port=38204 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NYMqj-0008HL-FX for qemu-devel@nongnu.org; Fri, 22 Jan 2010 11:59:09 -0500 Received: from e7.ny.us.ibm.com ([32.97.182.137]:52729) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NYMqj-0005ed-2K for qemu-devel@nongnu.org; Fri, 22 Jan 2010 11:59:09 -0500 Received: from d01relay01.pok.ibm.com (d01relay01.pok.ibm.com [9.56.227.233]) by e7.ny.us.ibm.com (8.14.3/8.13.1) with ESMTP id o0MGqf3e004947 for ; Fri, 22 Jan 2010 11:52:41 -0500 Received: from d01av03.pok.ibm.com (d01av03.pok.ibm.com [9.56.224.217]) by d01relay01.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o0MGx7Bc121932 for ; Fri, 22 Jan 2010 11:59:07 -0500 Received: from d01av03.pok.ibm.com (loopback [127.0.0.1]) by d01av03.pok.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id o0MGx7i4009446 for ; Fri, 22 Jan 2010 14:59:07 -0200 Message-ID: <4B59D959.1000708@linux.vnet.ibm.com> Date: Fri, 22 Jan 2010 10:59:05 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1264176542-5316-1-git-send-email-aliguori@us.ibm.com> <1264176542-5316-2-git-send-email-aliguori@us.ibm.com> <4B59D319.2010808@redhat.com> In-Reply-To: <4B59D319.2010808@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PATCH 1/3] Support --sysconfdir in configure to specify path to configuration files (v2) List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: John Cooper , qemu-devel@nongnu.org, Gerd Hoffman On 01/22/2010 10:32 AM, Paolo Bonzini wrote: > On 01/22/2010 05:09 PM, Anthony Liguori wrote: >> The default value is ${prefix}/etc/qemu. --sysconfdir can be used to >> override >> the default to an absolute path. The expectation is that when >> installed to >> /usr, --sysconfdir=/etc/qemu will be used. > > Sorry for not being precise; --sysconfdir in Autoconf is just > ${prefix}/etc. That's tough for us because on Windows, we store everything in a single directory. That is, ${sysconfdir}/qemu wouldn't be a good base for us. We would need to have sysconfdir and then a confdir that we could make different for win32. Regards, Anthony Liguori > Paolo