diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-01-05 20:49:10 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-01-05 20:49:10 +0000 |
commit | 670ce4806cbee78b57859cd7248da333b492fa8a (patch) | |
tree | 91e24f93f29f1697c57de4a19f5cfd3eb5595cb8 /eclass/gtk-sharp-module.eclass | |
parent | Stable on sparc, bug #253501 (diff) | |
download | historical-670ce4806cbee78b57859cd7248da333b492fa8a.tar.gz historical-670ce4806cbee78b57859cd7248da333b492fa8a.tar.bz2 historical-670ce4806cbee78b57859cd7248da333b492fa8a.zip |
Fix gapi-fixup being sedded into makefiles instead of gapi2-fixup, w.r.t. bug 253903.
Diffstat (limited to 'eclass/gtk-sharp-module.eclass')
-rw-r--r-- | eclass/gtk-sharp-module.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gtk-sharp-module.eclass b/eclass/gtk-sharp-module.eclass index cb429ab3d84d..ef56b9a9efd9 100644 --- a/eclass/gtk-sharp-module.eclass +++ b/eclass/gtk-sharp-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.8 2009/01/05 17:12:34 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.9 2009/01/05 20:49:10 loki_val Exp $ # Author : Peter Johanson <latexer@gentoo.org>, butchered by ikelos, then loki_val. # Based off of original work in gst-plugins.eclass by <foser@gentoo.org> @@ -207,8 +207,8 @@ gtk-sharp-module_fix_files() { # We also make sure to call the installed gapi-fixup and gapi-codegen and # not the ones that would be built locally. local gapi_dir="${ROOT}/usr/share/gapi${GTK_SHARP_SLOT_DEC}" - local GAPI_FIXUP="gapi${GTK_SHARP_COMPONENT_SLOT}-fixup" - local GAPI_CODEGEN="gapi${GTK_SHARP_COMPONENT_SLOT}-codegen" + local GAPI_FIXUP="gapi2-fixup" + local GAPI_CODEGEN="gapi2-codegen" local makefiles=( $(find "${S}" -name Makefile.in) ) sed -i \ |