diff options
author | 2005-05-15 09:18:29 +0000 | |
---|---|---|
committer | 2005-05-15 09:18:29 +0000 | |
commit | 5f70ccf4119971147e09f3be918ef8a2d581cdc3 (patch) | |
tree | 311e031cd5287ea9dddef046a886b839b3b5f3dd /eclass | |
parent | fixes support with pkgconfig-0.17, bug #92503 (diff) | |
download | historical-5f70ccf4119971147e09f3be918ef8a2d581cdc3.tar.gz historical-5f70ccf4119971147e09f3be918ef8a2d581cdc3.tar.bz2 historical-5f70ccf4119971147e09f3be918ef8a2d581cdc3.zip |
fixes support with pkgconfig-0.17, bug #92503
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gtk-sharp-component.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/gtk-sharp-component.eclass b/eclass/gtk-sharp-component.eclass index e580589e602a..6e03c2d6780a 100644 --- a/eclass/gtk-sharp-component.eclass +++ b/eclass/gtk-sharp-component.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-component.eclass,v 1.10 2005/05/13 00:53:41 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-component.eclass,v 1.11 2005/05/15 09:18:29 cardoe Exp $ # Author : Peter Johanson <latexer@gentoo.org> # Based off of original work in gst-plugins.eclass by <foser@gentoo.org> @@ -121,6 +121,9 @@ gtk-sharp-component_src_unpack() { sed -i -e "s:sample::" ${S}/Makefile.in || die cd ${S}/${GTK_SHARP_COMPONENT_BUILD_DIR} + + # fixes support with pkgconfig-0.17, bug #92503 + sed -i -e 's/\<PKG_PATH\>/GTK_SHARP_PKG_PATH/g' configure.in gtk-sharp-component_fix_makefiles } |