aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Lipe <robertl@dgii.com>1998-09-30 11:19:00 -0600
committerJeff Law <law@gcc.gnu.org>1998-09-30 11:19:00 -0600
commit5ae4c799f27dd83933a7c5fe7aa1f154463ddea6 (patch)
treec910d83a1a88c5d2b5d55d064f843997939b0d99
parent36ef59e79797f3317ed83ef1b4760aab004d59cb (diff)
downloadgcc-5ae4c799f27dd83933a7c5fe7aa1f154463ddea6.zip
gcc-5ae4c799f27dd83933a7c5fe7aa1f154463ddea6.tar.gz
gcc-5ae4c799f27dd83933a7c5fe7aa1f154463ddea6.tar.bz2
configure.in: Escape ^ in grep string.
* configure.in: Escape ^ in grep string. * configure: Rebuilt. From-SVN: r22681
-rw-r--r--libobjc/ChangeLog5
-rwxr-xr-xlibobjc/configure2
-rw-r--r--libobjc/configure.in2
3 files changed, 7 insertions, 2 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog
index 8e0735d..5eb758e 100644
--- a/libobjc/ChangeLog
+++ b/libobjc/ChangeLog
@@ -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.
diff --git a/libobjc/configure b/libobjc/configure
index 9379887..25cdc01 100755
--- a/libobjc/configure
+++ b/libobjc/configure
@@ -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
diff --git a/libobjc/configure.in b/libobjc/configure.in
index 8a5c58f..a0c4059 100644
--- a/libobjc/configure.in
+++ b/libobjc/configure.in
@@ -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])