In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/9cf72a4efbbd7d24d3d9d7f5c9d5be6e4ef4297a?hp=eb8d423fedc51cab74c8f3c999e4055d7b90f515>
- Log ----------------------------------------------------------------- commit 9cf72a4efbbd7d24d3d9d7f5c9d5be6e4ef4297a Author: Andy Dougherty <[email protected]> Date: Wed Jul 1 10:28:47 2009 -0400 [Configure]: avoid leaking Win32CORE.c into output of extension probing. ----------------------------------------------------------------------- Summary of changes: Configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Configure b/Configure index 2d6f7de..5dbd2f3 100755 --- a/Configure +++ b/Configure @@ -21655,7 +21655,7 @@ find_extensions=' $ls -1 $xxx > $$.tmp; if $contains "\.xs$" $$.tmp > /dev/null 2>&1; then known_extensions="$known_extensions $this_ext"; - elif $contains "\.c$" $$.tmp; then + elif $contains "\.c$" $$.tmp > /dev/null 2>&1; then known_extensions="$known_extensions $this_ext"; elif $test -d $xxx; then nonxs_extensions="$nonxs_extensions $this_ext"; -- Perl5 Master Repository
