configure.in: Escape ^ in grep string.
authorRobert Lipe <robertl@dgii.com>
Wed, 30 Sep 1998 17:19:00 +0000 (11:19 -0600)
committerJeff Law <law@gcc.gnu.org>
Wed, 30 Sep 1998 17:19:00 +0000 (11:19 -0600)
        * configure.in: Escape ^ in grep string.
        * configure: Rebuilt.

From-SVN: r22681

libobjc/ChangeLog
libobjc/configure
libobjc/configure.in

index 8e0735d0dc9ea7c6350243c89539c105512dee61..5eb758e1255c1463aab18c84291025d78ea7332a 100644 (file)
@@ -1,3 +1,8 @@
+Wed Sep 30 18:17:17 1998  Robert Lipe  <robertl@dgii.com
+
+       * configure.in: Escape ^ in grep string.
+       * configure: Rebuilt.
+
 Wed Sep 30 09:14:52 1998  Jeffrey A Law  (law@cygnus.com)
 
        * All .h files pushed down into the objc/ subdirectory.
index 9379887d6bdd6a2a1f14335c78c162a1f02ae7bb..25cdc01509daf40b6501c13514373946166eab94 100755 (executable)
@@ -1040,7 +1040,7 @@ if eval "test \"`echo '$''{'objc_cv_thread_file'+set}'`\" = set"; then
 else
   if test -f ../../gcc/Makefile
 then
-  objc_cv_thread_file=`grep ^GCC_THREAD_FILE ../../gcc/Makefile | awk -F= '{ print $2 }'`
+  objc_cv_thread_file=`grep \^GCC_THREAD_FILE ../../gcc/Makefile | awk -F= '{ print $2 }'`
 else
   { echo "configure: error: not found" 1>&2; exit 1; }
 fi
index 8a5c58f04dd8aa12c40bc192a9e9d52d52e1b71d..a0c405999141db103b1e8862de9c3cda82c5abc3 100644 (file)
@@ -64,7 +64,7 @@ AC_HEADER_STDC
 AC_CACHE_CHECK([for thread file],objc_cv_thread_file,
 [if test -f ../../gcc/Makefile
 then
-  objc_cv_thread_file=`grep ^GCC_THREAD_FILE ../../gcc/Makefile | awk -F= '{ print $2 }'`
+  objc_cv_thread_file=`grep \^GCC_THREAD_FILE ../../gcc/Makefile | awk -F= '{ print $2 }'`
 else
   AC_MSG_ERROR([not found])
 fi])