grep wants basic regexps, not extended ones: fix the regular expression
authorMariano Suárez-Alvarez <mariano@gnome.org>
Thu, 25 Nov 2004 01:19:25 +0000 (01:19 +0000)
committerMariano Suárez-Alvarez <mariano@src.gnome.org>
Thu, 25 Nov 2004 01:19:25 +0000 (01:19 +0000)
2004-11-24  Mariano Suárez-Alvarez <mariano@gnome.org>

* gnome-autogen.sh: grep wants basic regexps, not extended ones: fix the
regular expression for INTLTOOL.

svn path=/trunk/; revision=3485

macros2/ChangeLog
macros2/gnome-autogen.sh

index 34e5ce6..cf90c24 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-24  Mariano Suárez-Alvarez <mariano@gnome.org>
+
+       * gnome-autogen.sh: grep wants basic regexps, not extended ones: fix the
+       regular expression for INTLTOOL.
+
 2004-11-24  Rodney Dawes  <dobey@novell.com>
 
        * gnome-autogen.sh: Add support for IT_PROG_INTLTOOL which
index d513a04..e83c4e4 100644 (file)
@@ -218,7 +218,7 @@ for configure_ac in $configure_files; do
     if grep "^AM_GLIB_GNU_GETTEXT" $configure_ac >/dev/null; then
        want_glib_gettext=true
     fi
-    if grep "^(AC|IT)_PROG_INTLTOOL" $configure_ac >/dev/null; then
+    if grep "^\(AC\|IT\)_PROG_INTLTOOL" $configure_ac >/dev/null; then
        want_intltool=true
     fi
     if grep "^PKG_CHECK_MODULES" $configure_ac >/dev/null; then