[jhbuild] triggers: fix LiteralMatch vs REMatch problems
- From: Ryan Lortie <desrt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [jhbuild] triggers: fix LiteralMatch vs REMatch problems
- Date: Sun, 22 Feb 2015 23:17:44 +0000 (UTC)
commit abe8469ac7ef1a46d23adde25545d6469dd1b622
Author: Ryan Lortie <desrt desrt ca>
Date: Sat Feb 21 13:11:13 2015 -0500
triggers: fix LiteralMatch vs REMatch problems
ceaa03131d0ccdf80797228dd901a0af82bd12f8 tried to "fix" the failing
regular expression matches for several triggers, but made the mistake of
adding '^' to LiteralMatch lines. Change those to REMatch lines so that
they work properly.
https://bugzilla.gnome.org/show_bug.cgi?id=744903
triggers/glib.trigger | 2 +-
triggers/gtk+.trigger | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/triggers/glib.trigger b/triggers/glib.trigger
index dc51038..5524ac4 100644
--- a/triggers/glib.trigger
+++ b/triggers/glib.trigger
@@ -17,6 +17,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# IfExecutable: glib-compile-schemas
-# LiteralMatch: ^share/glib-2.0/schemas/
+# REMatch: ^share/glib-2.0/schemas/
glib-compile-schemas $JHBUILD_PREFIX/share/glib-2.0/schemas
diff --git a/triggers/gtk+.trigger b/triggers/gtk+.trigger
index d15827d..968ce9d 100644
--- a/triggers/gtk+.trigger
+++ b/triggers/gtk+.trigger
@@ -17,7 +17,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# IfExecutable: gtk-update-icon-cache
-# LiteralMatch: ^share/icons/
+# REMatch: ^share/icons/
for dir in $JHBUILD_PREFIX/share/icons/*; do
if test -f $dir/index.theme; then
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]