Commit 5ae4c799 by Robert Lipe Committed by Jeff Law

configure.in: Escape ^ in grep string.

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

From-SVN: r22681
parent 36ef59e7
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.
......
......@@ -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
......
......@@ -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])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment