diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1994-02-18 20:18:56 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1994-02-18 20:18:56 +0000 |
commit | 840e7e8ca0466299e4772d262cd0e89f01d328e6 (patch) | |
tree | 0420ec0f6ade30acb7df6f71aefd5d84e74eecce /configure.in | |
parent | 9e0cbfbbe38ab55103ffb3ec44d5c30048081286 (diff) | |
download | gdb-840e7e8ca0466299e4772d262cd0e89f01d328e6.zip gdb-840e7e8ca0466299e4772d262cd0e89f01d328e6.tar.gz gdb-840e7e8ca0466299e4772d262cd0e89f01d328e6.tar.bz2 |
Back out last patch until I figure out why configure is choking.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 50bc07b..cecd71b 100644 --- a/configure.in +++ b/configure.in @@ -125,7 +125,7 @@ case ${with_x} in yes | "") # the default value for this tree is that X11 is available ;; 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 @@ -143,13 +143,13 @@ if [ x"${host}" = x"${target}" ] ; then # when doing a native toolchain, don't build the targets # that are in the 'cross only' list for i in ${cross_only} ; do - configdirs=`echo " ${configdirs} " | sed -e "s/ $i / /"` + configdirs=`echo ${configdirs} | sed -e "s/$i//"` done else # similarly, don't build the targets in the 'native only' # list when building a cross compiler for i in ${native_only} ; do - configdirs=`echo " ${configdirs} " | sed -e "s/ $i / /"` + configdirs=`echo ${configdirs} | sed -e "s/$i//"` done fi @@ -263,7 +263,7 @@ esac notsupp="" for dir in . $noconfigdirs ; do 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 notsupp="$notsupp $dir" fi |