diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-11 07:31:40 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-11 07:31:40 +0000 |
commit | db1c2ab21d9f34469e9594926fa1c44382ebb50d (patch) | |
tree | 80777272ea555e43112dc68cc45de34c671d8c55 /configure | |
parent | e0473d22a22c03a84e7d00f58907940b99cbcade (diff) | |
download | gcc-db1c2ab21d9f34469e9594926fa1c44382ebb50d.tar.gz |
2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
PR bootstrap/14522
* configure.in: Fix esacping of $.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79305 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index b3adcc8347c..4e888695d37 100755 --- a/configure +++ b/configure @@ -2278,7 +2278,7 @@ if test -d ${srcdir}/gcc; then 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; } |