From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbEph-0008UZ-1j for qemu-devel@nongnu.org; Mon, 27 Jun 2011 12:38:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QbEpd-0001ea-M7 for qemu-devel@nongnu.org; Mon, 27 Jun 2011 12:38:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28470) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbEpd-0001eW-7A for qemu-devel@nongnu.org; Mon, 27 Jun 2011 12:38:41 -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 p5RGcejn001270 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 27 Jun 2011 12:38:40 -0400 Date: Mon, 27 Jun 2011 18:38:33 +0200 From: Alon Levy Message-ID: <20110627163833.GA30873@bow.redhat.com> References: <1309170884-29740-1-git-send-email-alevy@redhat.com> <1309170884-29740-2-git-send-email-alevy@redhat.com> <20110627121100.GA11044@teriyaki.cdg.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110627121100.GA11044@teriyaki.cdg.redhat.com> Subject: Re: [Qemu-devel] [PATCH 2/2] libcacard: add pc file, install it + includes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christophe Fergeau Cc: qemu-devel@nongnu.org On Mon, Jun 27, 2011 at 02:11:00PM +0200, Christophe Fergeau wrote: > Hi, > > On Mon, Jun 27, 2011 at 12:34:44PM +0200, Alon Levy wrote: > > Also add --pkgconfigdir and --includedir configure parameters. > > --- > > configure | 10 ++++++++++ > > libcacard/Makefile | 25 ++++++++++++++++++++++--- > > libcacard/libcacard.pc.in | 13 +++++++++++++ > > 3 files changed, 45 insertions(+), 3 deletions(-) > > create mode 100644 libcacard/libcacard.pc.in > > > > diff --git a/configure b/configure > > index e523976..d08818f 100755 > > --- a/configure > > +++ b/configure > > @@ -146,6 +146,8 @@ datadir="\${prefix}/share/qemu" > > docdir="\${prefix}/share/doc/qemu" > > bindir="\${prefix}/bin" > > libdir="\${prefix}/lib" > > +pkgconfigdir="\${prefix}/lib/pkgconfig" > > It would be more convenient if it was \${libdir}/pkgconfig and if it was > assigned a default value after --libdir has been parsed, though that would > look a bit out of place compared to how other values are set. ok, I'll drop --pkgconfigdir > > Christophe