Author: kwilliams
Date: Thu May 10 20:05:50 2007
New Revision: 9542

Modified:
   ExtUtils-CBuilder/trunk/Changes
   ExtUtils-CBuilder/trunk/lib/ExtUtils/CBuilder/Base.pm

Log:
Peek higher up the tree for perl sources when building in core

Modified: ExtUtils-CBuilder/trunk/Changes
==============================================================================
--- ExtUtils-CBuilder/trunk/Changes     (original)
+++ ExtUtils-CBuilder/trunk/Changes     Thu May 10 20:05:50 2007
@@ -1,5 +1,9 @@
 Revision history for Perl extension ExtUtils::CBuilder.
 
+ - When building as part of the perl core (so this is irrelevant for
+   people downloading from CPAN) we now try a little harder to find
+   the perl sources. [Jos Boumans]
+
  - Fixed a part of the manifest thingy that got broken on 64-bit
    Windows platforms in version 0.18. [Steve Hay, Jan Dubois]
 

Modified: ExtUtils-CBuilder/trunk/lib/ExtUtils/CBuilder/Base.pm
==============================================================================
--- ExtUtils-CBuilder/trunk/lib/ExtUtils/CBuilder/Base.pm       (original)
+++ ExtUtils-CBuilder/trunk/lib/ExtUtils/CBuilder/Base.pm       Thu May 10 
20:05:50 2007
@@ -244,7 +244,7 @@
   my $dir   = File::Spec->curdir;
 
   # Try up to 5 levels upwards
-  for (0..5) {
+  for (0..10) {
     if (
        -f File::Spec->catfile($dir,"config_h.SH")
        &&

Reply via email to