projects
/
gentoo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
589cc79
)
gtk-sharp-module.eclass: Fix broken if statement
author
Mike Gilbert
<floppym@gentoo.org>
Fri, 14 Aug 2015 21:38:06 +0000
(17:38 -0400)
committer
Mike 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
patch
|
blob
|
history
diff --git
a/eclass/gtk-sharp-module.eclass
b/eclass/gtk-sharp-module.eclass
index 6b457b123f066ed4bc674c6f2c78a38476b8fe80..3b9dee87632c734def36c15725a01e5d1d53b756 100644
(file)
--- 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