* configure.in: Avoid substring mismatches but allow matches

to words at front and end of string.
This commit is contained in:
David Edelsohn
1994-02-18 19:25:46 +00:00
parent fb0f423133
commit b37556c4ef
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Fri Feb 18 11:23:18 1994 Doug Evans (dje@canuck.cygnus.com)
* configure.in: Avoid substring mismatches but allow matches
to words at front and end of string.
Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com) Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
* config.guess: Add Lynx/rs6000 config support. * config.guess: Add Lynx/rs6000 config support.

View File

@ -125,7 +125,7 @@ case ${with_x} in
yes | "") # the default value for this tree is that X11 is available yes | "") # the default value for this tree is that X11 is available
;; ;;
no) no)
configdirs=`echo ${configdirs} | sed -e 's/tk//;/gash//'` configdirs=`echo " ${configdirs} " | sed -e 's/ tk / /;/ gash / /'`
;; ;;
*) *)
echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2 echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
@ -143,13 +143,13 @@ if [ x"${host}" = x"${target}" ] ; then
# when doing a native toolchain, don't build the targets # when doing a native toolchain, don't build the targets
# that are in the 'cross only' list # that are in the 'cross only' list
for i in ${cross_only} ; do for i in ${cross_only} ; do
configdirs=`echo ${configdirs} | sed -e "s/$i//"` configdirs=`echo " ${configdirs} " | sed -e "s/ $i / /"`
done done
else else
# similarly, don't build the targets in the 'native only' # similarly, don't build the targets in the 'native only'
# list when building a cross compiler # list when building a cross compiler
for i in ${native_only} ; do for i in ${native_only} ; do
configdirs=`echo ${configdirs} | sed -e "s/$i//"` configdirs=`echo " ${configdirs} " | sed -e "s/ $i / /"`
done done
fi fi
@ -263,7 +263,7 @@ esac
notsupp="" notsupp=""
for dir in . $noconfigdirs ; do for dir in . $noconfigdirs ; do
if [ $dir != . ] && echo "# ${configdirs} #" | grep "${dir} " >/dev/null 2>&1 ; then if [ $dir != . ] && echo "# ${configdirs} #" | grep "${dir} " >/dev/null 2>&1 ; then
configdirs=`echo $configdirs | sed -e "s/${dir} / /"` configdirs=`echo " $configdirs " | sed -e "s/ ${dir} / /"`
if [ -r $srcdir/$dir/configure ] || [ -r $srcdir/$dir/configure.in ]; then if [ -r $srcdir/$dir/configure ] || [ -r $srcdir/$dir/configure.in ]; then
notsupp="$notsupp $dir" notsupp="$notsupp $dir"
fi fi