From e6425baf564d4715376542ab89ba4528f259b1cb Mon Sep 17 00:00:00 2001 From: schwab Date: Mon, 6 Sep 2010 10:35:22 +0000 Subject: config/: * dfp.m4: Quote argument of AC_MSG_WARN. gcc/: * configure.ac: Quote argument of AC_MSG_WARN. * configure: Regenerate. libdecnumber/: * configure: Regenerate. libgcc/: * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163909 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/configure | 12 ++++++------ gcc/configure.ac | 4 ++-- 3 files changed, 13 insertions(+), 8 deletions(-) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd25fccffc1..8bc1dce2697 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-09-06 Andreas Schwab + + * configure.ac: Quote argument of AC_MSG_WARN. + * configure: Regenerate. + 2010-09-06 Alexander Monakov * sel-sched.c (move_cond_jump): Correct arguments to maybe_tidy_empty_bb. diff --git a/gcc/configure b/gcc/configure index da0c48bcb09..a59420da250 100755 --- a/gcc/configure +++ b/gcc/configure @@ -6666,8 +6666,8 @@ else enable_decimal_float=yes ;; *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: decimal float is not supported for this target" >&5 -$as_echo "$as_me: WARNING: decimal float is not supported for this target" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: decimal float is not supported for this target, ignored" >&5 +$as_echo "$as_me: WARNING: decimal float is not supported for this target, ignored" >&2;} enable_decimal_float=no ;; esac @@ -6722,8 +6722,8 @@ else mips*-*-*) case $host in mips*-sgi-irix*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: fixed-point is not supported on IRIX" >&5 -$as_echo "$as_me: WARNING: fixed-point is not supported on IRIX" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: fixed-point is not supported on IRIX, ignored" >&5 +$as_echo "$as_me: WARNING: fixed-point is not supported on IRIX, ignored" >&2;} enable_fixed_point=no ;; *) @@ -6732,8 +6732,8 @@ $as_echo "$as_me: WARNING: fixed-point is not supported on IRIX" >&2;} esac ;; *) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: fixed-point is not supported for this target" >&5 -$as_echo "$as_me: WARNING: fixed-point is not supported for this target" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: fixed-point is not supported for this target, ignored" >&5 +$as_echo "$as_me: WARNING: fixed-point is not supported for this target, ignored" >&2;} enable_fixed_point=no ;; esac diff --git a/gcc/configure.ac b/gcc/configure.ac index bbcbc7fdcf5..101e84c9f6d 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -627,7 +627,7 @@ AC_ARG_ENABLE(fixed-point, mips*-*-*) case $host in mips*-sgi-irix*) - AC_MSG_WARN(fixed-point is not supported on IRIX, ignored) + AC_MSG_WARN([fixed-point is not supported on IRIX, ignored]) enable_fixed_point=no ;; *) @@ -636,7 +636,7 @@ AC_ARG_ENABLE(fixed-point, esac ;; *) - AC_MSG_WARN(fixed-point is not supported for this target, ignored) + AC_MSG_WARN([fixed-point is not supported for this target, ignored]) enable_fixed_point=no ;; esac -- cgit v1.2.1