mirror of git://gcc.gnu.org/git/gcc.git
re PR bootstrap/14522 (Bad sed command in the configure script)
2004-03-10 Andrew Pinski <pinskia@physics.uc.edu> PR bootstrap/14522 * configure.in: Fix esacping of $. * configure: Regenerate. From-SVN: r79305
This commit is contained in:
parent
11599d1450
commit
83c15dfcb6
|
@ -1,3 +1,9 @@
|
||||||
|
2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
|
||||||
|
|
||||||
|
PR bootstrap/14522
|
||||||
|
* configure.in: Fix esacping of $.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
|
2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||||
|
|
||||||
* configure: Regenerate, since I forgot to while committing Paolo's
|
* configure: Regenerate, since I forgot to while committing Paolo's
|
||||||
|
|
|
@ -2278,7 +2278,7 @@ if test -d ${srcdir}/gcc; then
|
||||||
esac
|
esac
|
||||||
done
|
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
|
if test "x$missing_languages" != x; then
|
||||||
{ echo "configure: error:
|
{ echo "configure: error:
|
||||||
The following requested languages were not found: ${missing_languages}" 1>&2; exit 1; }
|
The following requested languages were not found: ${missing_languages}" 1>&2; exit 1; }
|
||||||
|
|
|
@ -1177,7 +1177,7 @@ if test -d ${srcdir}/gcc; then
|
||||||
esac
|
esac
|
||||||
done
|
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
|
if test "x$missing_languages" != x; then
|
||||||
AC_MSG_ERROR([
|
AC_MSG_ERROR([
|
||||||
The following requested languages were not found: ${missing_languages}])
|
The following requested languages were not found: ${missing_languages}])
|
||||||
|
|
Loading…
Reference in New Issue