diff options
author | 2015-08-14 12:52:21 +0400 | |
---|---|---|
committer | 2015-08-14 12:52:21 +0400 | |
commit | 3305d2cf6f82eb15f3beda4039ea4629c633a3dd (patch) | |
tree | b1823ec7721ba62a1628328023cf7949cc818c68 /eclass | |
parent | mono doc problem is still not being fixed in futured versions (diff) | |
download | gentoo-3305d2cf6f82eb15f3beda4039ea4629c633a3dd.tar.gz gentoo-3305d2cf6f82eb15f3beda4039ea4629c633a3dd.tar.bz2 gentoo-3305d2cf6f82eb15f3beda4039ea4629c633a3dd.zip |
eclass/gtk-sharp-module gmcs is derpecated and dropped, use mcs
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gtk-sharp-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gtk-sharp-module.eclass b/eclass/gtk-sharp-module.eclass index 5479fd0abc01..3919f84e22a7 100644 --- a/eclass/gtk-sharp-module.eclass +++ b/eclass/gtk-sharp-module.eclass @@ -522,13 +522,13 @@ gtk-sharp-module_src_configure() { # @FUNCTION: gtk-sharp-module_src_compile # @DESCRIPTION: # Calls emake in the subdir of the module. -# Sets CSC=/usr/bin/gmcs. Deletes top_srcdir Makefiles to prevent recursing in +# Sets CSC=/usr/bin/mcs. Deletes top_srcdir Makefiles to prevent recursing in # case we missed some dll references. # Is exported. gtk-sharp-module_src_compile() { rm -f "${S}"/Makefile* &> /dev/null cd "${S}/${GTK_SHARP_MODULE_DIR}" - emake CSC=/usr/bin/gmcs || die "emake failed" + emake CSC=/usr/bin/mcs || die "emake failed" } # @FUNCTION: gtk-sharp-module_src_install |