gtk-sharp-module.eclass: Fix broken if statement
authorMike Gilbert <floppym@gentoo.org>
Fri, 14 Aug 2015 21:38:06 +0000 (17:38 -0400)
committerMike Gilbert <floppym@gentoo.org>
Fri, 14 Aug 2015 21:39:42 +0000 (17:39 -0400)
This was causing Manifest failures all over the dev-dotnet category.

eclass/gtk-sharp-module.eclass

index 6b457b123f066ed4bc674c6f2c78a38476b8fe80..3b9dee87632c734def36c15725a01e5d1d53b756 100644 (file)
@@ -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