summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaka Kranjc2009-01-03 12:20:03 +0100
committerJaka Kranjc2009-01-03 12:36:30 +0100
commit0464855b11d40221fe491b3a6b6f21f5e94d1baf (patch)
treec5a36d15ff0fcaec154cb91494e3d3dec2b2fe90
parent1dd1c092418823a7df72507ce126a5c4f4a1923c (diff)
epiphany: {PRE_,}SUB_DEPENDS: made the subdeps uppercase #15000
-rw-r--r--gnome2-apps/epiphany/HISTORY3
-rwxr-xr-xgnome2-apps/epiphany/PRE_SUB_DEPENDS2
-rwxr-xr-xgnome2-apps/epiphany/SUB_DEPENDS2
3 files changed, 5 insertions, 2 deletions
diff --git a/gnome2-apps/epiphany/HISTORY b/gnome2-apps/epiphany/HISTORY
index 995a35846b..646a21011d 100644
--- a/gnome2-apps/epiphany/HISTORY
+++ b/gnome2-apps/epiphany/HISTORY
@@ -1,3 +1,6 @@
+2009-01-03 Jaka Kranjc <lynxlynxlynx@sourcemage.org>
+ * {PRE_,}SUB_DEPENDS: made the subdeps uppercase #15000
+
2008-11-26 George Sherwood <gsherwood@sourcemage.org>
* DETAILS: Updated to version 2.24.2.1
diff --git a/gnome2-apps/epiphany/PRE_SUB_DEPENDS b/gnome2-apps/epiphany/PRE_SUB_DEPENDS
index d7760b58a9..b84d6afd96 100755
--- a/gnome2-apps/epiphany/PRE_SUB_DEPENDS
+++ b/gnome2-apps/epiphany/PRE_SUB_DEPENDS
@@ -1,4 +1,4 @@
case $THIS_SUB_DEPENDS in
- gnome-python2) is_depends_enabled $SPELL gnome-python2 ;;
+ gnome-python2|GNOME-PYTHON2) is_depends_enabled $SPELL gnome-python2 ;;
*) message "${PROBLEM_COLOR}bogus sub_depends: ${SPELL} ${THIS_SUB_DEPENDS}${DEFAULT_COLOR}" && return 1 ;;
esac
diff --git a/gnome2-apps/epiphany/SUB_DEPENDS b/gnome2-apps/epiphany/SUB_DEPENDS
index 5f6ca46a04..ca1b636fe3 100755
--- a/gnome2-apps/epiphany/SUB_DEPENDS
+++ b/gnome2-apps/epiphany/SUB_DEPENDS
@@ -1,4 +1,4 @@
case $THIS_SUB_DEPENDS in
-gnome-python2) echo "python bindings requested, forcing them."; depends gnome-python2 '--enable-python';;
+gnome-python2|GNOME-PYTHON2) echo "python bindings requested, forcing them."; depends gnome-python2 '--enable-python';;
*) echo "unknown sub-depends!"; return 1;;
esac