configure.in: Escape ^ in grep string.

* configure.in: Escape ^ in grep string.
        * configure: Rebuilt.

From-SVN: r22681
This commit is contained in:
Robert Lipe 1998-09-30 11:19:00 -06:00 committed by Jeff Law
parent 36ef59e797
commit 5ae4c799f2
3 changed files with 7 additions and 2 deletions

View 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.

2
libobjc/configure vendored
View File

@ -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

View 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])