[Python-checkins] r76403 - in python/trunk: Misc/NEWS configure configure.in

Mark Dickinson dickinsm at gmail.com
Fri Nov 20 18:22:29 CET 2009


On Thu, Nov 19, 2009 at 4:28 PM, ronald.oussoren
<python-checkins at python.org> wrote:
> Author: ronald.oussoren
> Date: Thu Nov 19 17:25:21 2009
> New Revision: 76403
>
> Log:
> Fix for issue #7085

[...]

> Modified: python/trunk/configure
> ==============================================================================
> --- python/trunk/configure      (original)
> +++ python/trunk/configure      Thu Nov 19 17:25:21 2009
> @@ -1,5 +1,5 @@
>  #! /bin/sh
> -# From configure.in Revision: 76300 .
> +# From configure.in Revision: 76308 .
>  # Guess values for system-dependent variables and create Makefiles.
>  # Generated by GNU Autoconf 2.61 for python 2.7.
>  #
> @@ -3865,7 +3865,7 @@
>   { echo "$as_me:$LINENO: result: no" >&5
>  echo "${ECHO_T}no" >&6; }
>  fi
> -rm -f conftest*
> +rm -f -r conftest*
>
>
>
> @@ -5413,7 +5413,7 @@
>  else
>   ac_cv_header_stdc=no
>  fi
> -rm -f conftest*
> +rm -f -r conftest*
>
>  fi
>
> @@ -5434,7 +5434,7 @@
>  else
>   ac_cv_header_stdc=no
>  fi
> -rm -f conftest*
> +rm -f -r conftest*

[Snip lots more occurrences of -rm -f conftext* \n +rm -f -r conftest* ]

It looks as though the autoconf provided with OS X 10.6 isn't quite
standard...

Mark


More information about the Python-checkins mailing list