commit: 6ab3074a3039f60de2c40c2a69def60388eff5a5 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Fri Aug 14 21:38:06 2015 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Fri Aug 14 21:39:42 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab3074a
gtk-sharp-module.eclass: Fix broken if statement This was causing Manifest failures all over the dev-dotnet category. eclass/gtk-sharp-module.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/gtk-sharp-module.eclass b/eclass/gtk-sharp-module.eclass index 6b457b1..3b9dee8 100644 --- a/eclass/gtk-sharp-module.eclass +++ b/eclass/gtk-sharp-module.eclass @@ -283,7 +283,7 @@ S="${WORKDIR}/${TARBALL}-${PV}" # @ECLASS-VARIABLE: SRC_URI # @DESCRIPTION: # Default value: mirror://gnome/sources/${TARBALL}/${PV_MAJOR}/${TARBALL}-${PV}.tar.bz2 -if TARBALL="gtk-sharp"; then +if [[ ${TARBALL} == "gtk-sharp" ]]; then SRC_URI="${SRC_URI} http://download.mono-project.com/sources/gtk-sharp212/${TARBALL}-${PV}.tar.bz2" else