diff options
author | Ulrich Müller <ulm@gentoo.org> | 2013-02-28 17:07:15 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2013-02-28 17:07:15 +0000 |
commit | c180b78179675dc253451e64f8a7435fc07bbf80 (patch) | |
tree | 9f1fad81582fde74bfe5479ce681977460a2e136 /app-editors/jove | |
parent | Don't call pkg-config directly, in order not to break cross compilation. (diff) | |
download | gentoo-2-c180b78179675dc253451e64f8a7435fc07bbf80.tar.gz gentoo-2-c180b78179675dc253451e64f8a7435fc07bbf80.tar.bz2 gentoo-2-c180b78179675dc253451e64f8a7435fc07bbf80.zip |
Don't call pkg-config directly, in order not to break cross compilation.
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-editors/jove')
-rw-r--r-- | app-editors/jove/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/jove/jove-4.16.0.73.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-editors/jove/ChangeLog b/app-editors/jove/ChangeLog index d826a6660593..935a34627547 100644 --- a/app-editors/jove/ChangeLog +++ b/app-editors/jove/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/jove # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.35 2013/02/28 07:12:41 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.36 2013/02/28 17:07:15 ulm Exp $ + + 28 Feb 2013; Ulrich Müller <ulm@gentoo.org> jove-4.16.0.73.ebuild: + Don't call pkg-config directly, in order not to break cross compilation. 28 Feb 2013; Ulrich Müller <ulm@gentoo.org> jove-4.16.0.73.ebuild: Fix build failure with separate tinfo library, bug 459486. diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild index f63787160b69..0ac9cf7625bc 100644 --- a/app-editors/jove/jove-4.16.0.73.ebuild +++ b/app-editors/jove/jove-4.16.0.73.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.73.ebuild,v 1.7 2013/02/28 07:12:41 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.73.ebuild,v 1.8 2013/02/28 17:07:15 ulm Exp $ EAPI=4 @@ -33,7 +33,7 @@ src_compile() { emake OPTFLAGS="${CFLAGS}" \ SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \ - TERMCAPLIB="$(pkg-config --libs ncurses)" + TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" if use doc; then # Full manual (*not* man page) |