Skip to content

Commit

Permalink
gtk-sharp-module.eclass: Fix broken if statement
Browse files Browse the repository at this point in the history
This was causing Manifest failures all over the dev-dotnet category.
  • Loading branch information
floppym committed Aug 14, 2015
1 parent 589cc79 commit 6ab3074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eclass/gtk-sharp-module.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ab3074

Please sign in to comment.