This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] PR 45084: Fix misquoting in stdint.m4.


FYI, syncing from GCC to src and regenerating affected files.

Cheers,
Ralf

* Ralf Wildenhues wrote on Mon, Aug 16, 2010 at 10:53:39PM CEST:
> Fix misquoting in stdint.m4.
> 
> config/ChangeLog:
> 2010-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
> 
> 	PR target/45084
> 	* stdint.m4 (GCC_HEADER_STDINT): Use m4 quotes for arguments
> 	of AC_MSG_ERROR.

> libdecnumber/ChangeLog:
> 2010-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
> 
> 	* configure: Regenerate.
> 

bfd/ChangeLog:
2010-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	* configure: Regenerate.

> diff --git a/config/stdint.m4 b/config/stdint.m4
> index d63081d..fbdd586 100644
> --- a/config/stdint.m4
> +++ b/config/stdint.m4
> @@ -146,7 +146,7 @@ if test $acx_cv_header_stdint = stddef.h; then
>    AC_MSG_CHECKING(for type equivalent to int8_t)
>    case "$ac_cv_sizeof_char" in
>      1) acx_cv_type_int8_t=char ;;
> -    *) AC_MSG_ERROR(no 8-bit type, please report a bug)
> +    *) AC_MSG_ERROR([no 8-bit type, please report a bug])
>    esac
>    AC_MSG_RESULT($acx_cv_type_int8_t)
>  
> @@ -154,7 +154,7 @@ if test $acx_cv_header_stdint = stddef.h; then
>    case "$ac_cv_sizeof_int:$ac_cv_sizeof_short" in
>      2:*) acx_cv_type_int16_t=int ;;
>      *:2) acx_cv_type_int16_t=short ;;
> -    *) AC_MSG_ERROR(no 16-bit type, please report a bug)
> +    *) AC_MSG_ERROR([no 16-bit type, please report a bug])
>    esac
>    AC_MSG_RESULT($acx_cv_type_int16_t)
>  
> @@ -162,7 +162,7 @@ if test $acx_cv_header_stdint = stddef.h; then
>    case "$ac_cv_sizeof_int:$ac_cv_sizeof_long" in
>      4:*) acx_cv_type_int32_t=int ;;
>      *:4) acx_cv_type_int32_t=long ;;
> -    *) AC_MSG_ERROR(no 32-bit type, please report a bug)
> +    *) AC_MSG_ERROR([no 32-bit type, please report a bug])
>    esac
>    AC_MSG_RESULT($acx_cv_type_int32_t)
>  fi
> @@ -185,7 +185,7 @@ if test "$ac_cv_type_uintptr_t" != yes; then
>      2) acx_cv_type_intptr_t=int16_t ;;
>      4) acx_cv_type_intptr_t=int32_t ;;
>      8) acx_cv_type_intptr_t=int64_t ;;
> -    *) AC_MSG_ERROR(no equivalent for intptr_t, please report a bug)
> +    *) AC_MSG_ERROR([no equivalent for intptr_t, please report a bug])
>    esac
>    AC_MSG_RESULT($acx_cv_type_intptr_t)
>  fi
> 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]