From 5ed09c3bef070a2eebeee04fd8ef78feb60f9190 Mon Sep 17 00:00:00 2001 From: law Date: Tue, 5 Jan 1999 00:40:22 +0000 Subject: * configure.in (thread_file): Correct and simplify code to find the thread file. * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24494 138bc75d-0d04-0410-961f-82ee72b054a4 --- libobjc/ChangeLog | 6 ++++++ libobjc/configure | 13 +++---------- libobjc/configure.in | 11 ++--------- 3 files changed, 11 insertions(+), 19 deletions(-) (limited to 'libobjc') diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index ef8f0734ded..a201145b15b 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,9 @@ +Tue Jan 5 01:38:53 1999 Jeffrey A Law (law@cygnus.com) + + * configure.in (thread_file): Correct and simplify code to find + the thread file. + * configure: Rebuilt. + 1998-11-26 Manfred Hollstein * configure.in (compiler_name): Add check to detect if this diff --git a/libobjc/configure b/libobjc/configure index 2efba0c5e08..4de20137d93 100755 --- a/libobjc/configure +++ b/libobjc/configure @@ -1063,21 +1063,14 @@ fi # Determine the name of the GCC thread file. -dir=`pwd` -if test x"${with_multisubdir}" = "x" ; then - gccobjdir=`echo $dir/../../gcc` -else - gccobjdir=`echo $dir | sed -e s:${with_multisubdir}::`/../../gcc -fi - echo $ac_n "checking for thread file""... $ac_c" 1>&6 -echo "configure:1075: checking for thread file" >&5 +echo "configure:1068: checking for thread file" >&5 if eval "test \"`echo '$''{'objc_cv_thread_file'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - if test -f $gccobjdir/Makefile + if test -f "$r"/gcc/Makefile then - objc_cv_thread_file=`grep \^GCC_THREAD_FILE $gccobjdir/Makefile | awk -F= '{ print $2 }'` + objc_cv_thread_file=`grep \^GCC_THREAD_FILE "$r"/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 73bdd0d49be..061501b642c 100644 --- a/libobjc/configure.in +++ b/libobjc/configure.in @@ -90,17 +90,10 @@ AC_HEADER_STDC # Determine the name of the GCC thread file. -dir=`pwd` -if test x"${with_multisubdir}" = "x" ; then - gccobjdir=`echo $dir/../../gcc` -else - gccobjdir=`echo $dir | sed -e s:${with_multisubdir}::`/../../gcc -fi - AC_CACHE_CHECK([for thread file],objc_cv_thread_file, -[if test -f $gccobjdir/Makefile +[if test -f "$r"/gcc/Makefile then - objc_cv_thread_file=`grep \^GCC_THREAD_FILE $gccobjdir/Makefile | awk -F= '{ print $2 }'` + objc_cv_thread_file=`grep \^GCC_THREAD_FILE "$r"/gcc/Makefile | awk -F= '{ print $2 }'` else AC_MSG_ERROR([not found]) fi]) -- cgit v1.2.1