Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2004-03-11 21:30:52 +0300
committerDJ Delorie <dj@redhat.com>2004-03-11 21:30:52 +0300
commit967641f2aaeeb8c5242b8ba485d41a171669225c (patch)
tree5bdde86aec1502e81204da1c1e96940c64c2ca95 /configure
parentf8a024a81b650ba7fdb7d0df9d4eebe50a16bba4 (diff)
2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
Paolo Bonzini <bonzini@gnu.org> PR bootstrap/14522 * configure.in: Cope with shell that do not support nesting quotes inside quoted backquote substitutions. * configure: Regenerate. 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu> PR bootstrap/14522 * configure.in: Fix escaping of $. * configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index b3adcc834..166966545 100755
--- a/configure
+++ b/configure
@@ -2272,13 +2272,13 @@ if test -d ${srcdir}/gcc; then
eval noconfigdirs='"$noconfigdirs "'\"$target_libs $lang_dirs\" ;;
*)
new_enable_languages="$new_enable_languages,$language"
- missing_languages="`echo "$missing_languages" | sed "s/,$language,/,/"`" ;;
+ missing_languages=`echo "$missing_languages" | sed "s/,$language,/,/"` ;;
esac
;;
esac
done
- missing_languages="`echo "$missing_languages" | sed -e s/^,// -e s/,$//`"
+ missing_languages=`echo "$missing_languages" | sed -e s/^,// -e s/,\$//`
if test "x$missing_languages" != x; then
{ echo "configure: error:
The following requested languages were not found: ${missing_languages}" 1>&2; exit 1; }
@@ -2288,7 +2288,7 @@ The following requested languages were not found: ${missing_languages}" 1>&2; ex
echo The following languages will be built: ${new_enable_languages}
fi
enable_languages="$new_enable_languages"
- ac_configure_args="`echo " $ac_configure_args" | sed -e 's/ --enable-languages=[^ ]*//' -e 's/$/ --enable-languages='"$enable_languages"/ `"
+ ac_configure_args=`echo " $ac_configure_args" | sed -e 's/ --enable-languages=[^ ]*//' -e 's/$/ --enable-languages='"$enable_languages"/ `
fi
# Remove the entries in $skipdirs and $noconfigdirs from $configdirs and