In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/5cd155b07ed261125793850e101ebe6fa438c5e3?hp=45d6bfc0a1065fd0bfd64d6de210fe08b16725f9>

- Log -----------------------------------------------------------------
commit 5cd155b07ed261125793850e101ebe6fa438c5e3
Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk>
Date:   Sat Jun 24 14:48:59 2017 +0100

    Update Time-HiRes to CPAN version 1.9742
    
      [DELTA]
    
    1.9742 [2017-04-16]
      - prefer 3-argument open: blead 1ae6ead9
      - fix dist/Time-HiRes/t/*.t that assumed '.' in @INC: blead 465db51d
      - fix cases where 'do file' should be 'do ./file'.: blead 8b69401c
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl      | 2 +-
 dist/Time-HiRes/Changes     | 5 +++++
 dist/Time-HiRes/HiRes.pm    | 2 +-
 dist/Time-HiRes/Makefile.PL | 4 ++--
 4 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 847f62574e..9ae08c9ad7 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -1178,7 +1178,7 @@ use File::Glob qw(:case);
     },
 
     'Time::HiRes' => {
-        'DISTRIBUTION' => 'JHI/Time-HiRes-1.9741.tar.gz',
+        'DISTRIBUTION' => 'JHI/Time-HiRes-1.9742.tar.gz',
         'FILES'        => q[dist/Time-HiRes],
     },
 
diff --git a/dist/Time-HiRes/Changes b/dist/Time-HiRes/Changes
index c2ad5a5302..0084af6c84 100644
--- a/dist/Time-HiRes/Changes
+++ b/dist/Time-HiRes/Changes
@@ -1,5 +1,10 @@
 Revision history for the Perl extension Time::HiRes.
 
+1.9742 [2017-04-16]
+  - prefer 3-argument open: blead 1ae6ead9
+  - fix dist/Time-HiRes/t/*.t that assumed '.' in @INC: blead 465db51d
+  - fix cases where 'do file' should be 'do ./file'.: blead 8b69401c
+
 1.9741 [2016-11-20]
   - C++11 compatibility: blead a914236c
   - El Capitan compatibility: blead 45bbc013
diff --git a/dist/Time-HiRes/HiRes.pm b/dist/Time-HiRes/HiRes.pm
index a3ddd595b7..386d30d935 100644
--- a/dist/Time-HiRes/HiRes.pm
+++ b/dist/Time-HiRes/HiRes.pm
@@ -28,7 +28,7 @@ our @EXPORT_OK = qw (usleep sleep ualarm alarm gettimeofday 
time tv_interval
                 stat lstat utime
                );
 
-our $VERSION = '1.9741';
+our $VERSION = '1.9742';
 our $XS_VERSION = $VERSION;
 $VERSION = eval $VERSION;
 
diff --git a/dist/Time-HiRes/Makefile.PL b/dist/Time-HiRes/Makefile.PL
index 66691fd08b..ca4d4dc420 100644
--- a/dist/Time-HiRes/Makefile.PL
+++ b/dist/Time-HiRes/Makefile.PL
@@ -417,11 +417,11 @@ sub DEFINE {
 }
 
 sub init {
-    my $hints = File::Spec->catfile("hints", "$^O.pl");
+    my $hints = File::Spec->catfile(".", "hints", "$^O.pl");
     if (-f $hints) {
        print "Using hints $hints...\n";
        local $self;
-       do "./$hints";
+       do $hints;
        if (exists $self->{LIBS}) {
            $LIBS = $self->{LIBS};
            print "Extra libraries: @$LIBS...\n";

--
Perl5 Master Repository

Reply via email to