diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-12-02 17:48:28 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2011-12-02 17:48:28 +0000 |
commit | 166ebb6fb3687c59807cf0cb1c339e8391331b82 (patch) | |
tree | 2e98efc13a0a5c5be2db209198c49c92fd00eaa7 /dev-util/pkgconfig | |
parent | Revbump. USE=gpsd -> USE=gps. Fixes #390973 (diff) | |
download | gentoo-2-166ebb6fb3687c59807cf0cb1c339e8391331b82.tar.gz gentoo-2-166ebb6fb3687c59807cf0cb1c339e8391331b82.tar.bz2 gentoo-2-166ebb6fb3687c59807cf0cb1c339e8391331b82.zip |
Pass correct include and library paths for Prefix, bug #392619
(Portage version: 2.2.01.19572-prefix/cvs/Darwin i386)
Diffstat (limited to 'dev-util/pkgconfig')
-rw-r--r-- | dev-util/pkgconfig/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/pkgconfig/pkgconfig-0.26.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/dev-util/pkgconfig/ChangeLog b/dev-util/pkgconfig/ChangeLog index bc023154bcd2..efa04eade2aa 100644 --- a/dev-util/pkgconfig/ChangeLog +++ b/dev-util/pkgconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/pkgconfig # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.103 2011/10/30 02:50:22 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.104 2011/12/02 17:48:28 grobian Exp $ + + 02 Dec 2011; Fabian Groffen <grobian@gentoo.org> pkgconfig-0.26.ebuild: + Pass correct include and library paths for Prefix, bug #392619 30 Oct 2011; Jonathan Callen <abcd@gentoo.org> pkgconfig-0.26.ebuild: -m Fix typo ($(libdir) -> $(get_libdir)) (bug 388925) diff --git a/dev-util/pkgconfig/pkgconfig-0.26.ebuild b/dev-util/pkgconfig/pkgconfig-0.26.ebuild index 1ed72b772efe..07f103750e10 100644 --- a/dev-util/pkgconfig/pkgconfig-0.26.ebuild +++ b/dev-util/pkgconfig/pkgconfig-0.26.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.26.ebuild,v 1.9 2011/10/30 02:50:22 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.26.ebuild,v 1.10 2011/12/02 17:48:28 grobian Exp $ EAPI=4 inherit flag-o-matic multilib libtool @@ -43,6 +43,8 @@ src_configure() { econf \ --docdir="${EPREFIX}"/usr/share/doc/${PF}/html \ + --with-system-include-path="${EPREFIX}"/usr/include \ + --with-system-library-path="${EPREFIX}"/usr/$(get_libdir) \ --with-installed-popt \ ${myconf} } |