From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFSkh-0006Lj-TW for qemu-devel@nongnu.org; Wed, 04 Apr 2012 12:08:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFSka-0006Tv-K5 for qemu-devel@nongnu.org; Wed, 04 Apr 2012 12:08:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFSka-0006SS-CA for qemu-devel@nongnu.org; Wed, 04 Apr 2012 12:08:00 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q34G7rlY016663 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 4 Apr 2012 12:07:53 -0400 Message-ID: <4F7C6812.2060009@redhat.com> Date: Wed, 04 Apr 2012 17:26:10 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1333128782-20589-1-git-send-email-ehabkost@redhat.com> <1333128782-20589-15-git-send-email-ehabkost@redhat.com> In-Reply-To: <1333128782-20589-15-git-send-email-ehabkost@redhat.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 14/14] configure: add --confsuffix option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: qemu-devel@nongnu.org Il 30/03/2012 19:33, Eduardo Habkost ha scritto: > This will allow the user to make Qemu use a different subdirectory name > inside $datadir and $sysconfdir, instead of "/qemu". > > Signed-off-by: Eduardo Habkost > --- > configure | 9 ++++++--- > 1 files changed, 6 insertions(+), 3 deletions(-) > > diff --git a/configure b/configure > index b74efe2..e56c569 100755 > --- a/configure > +++ b/configure > @@ -591,6 +591,8 @@ for opt do > ;; > --datadir=*) datadir="$optarg" > ;; > + --with-confsuffix=*) confsuffix="$optarg" > + ;; > --docdir=*) qemu_docdir="$optarg" > ;; > --sysconfdir=*) sysconfdir="$optarg" > @@ -1007,10 +1009,11 @@ echo " --python=PYTHON use specified python [$python]" > echo " --smbd=SMBD use specified smbd [$smbd]" > echo " --static enable static build [$static]" > echo " --mandir=PATH install man pages in PATH" > -echo " --datadir=PATH install firmware in PATH/qemu" > -echo " --docdir=PATH install documentation in PATH" > +echo " --datadir=PATH install firmware in PATH$confsuffix" > +echo " --docdir=PATH install documentation in PATH$confsuffix" > echo " --bindir=PATH install binaries in PATH" > -echo " --sysconfdir=PATH install config in PATH/qemu" > +echo " --sysconfdir=PATH install config in PATH$confsuffix" > +echo " --with-confsuffix=SUFFIX suffix for Qemu data inside datadir and sysconfdir [$confsuffix]" > echo " --enable-debug-tcg enable TCG debugging" > echo " --disable-debug-tcg disable TCG debugging (default)" > echo " --enable-debug enable common debug build options" The subject was not adjusted, perhaps you can send a v2 of this patch only? Paolo