[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 2/2] libcacard: add pc file, install it + includ
From: |
Alon Levy |
Subject: |
Re: [Qemu-devel] [PATCH 2/2] libcacard: add pc file, install it + includes |
Date: |
Mon, 27 Jun 2011 18:38:33 +0200 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
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