In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/c89e1b5ce75f6c47bfc6ebb8dc0602bd7ef88427?hp=17cffb3718693d45499c002f0f50df9196858f28>

- Log -----------------------------------------------------------------
commit c89e1b5ce75f6c47bfc6ebb8dc0602bd7ef88427
Author: Tony Cook <t...@develop-help.com>
Date:   Tue Aug 31 00:43:20 2010 +1000

    fix the AIX skip to only skip on AIX
-----------------------------------------------------------------------

Summary of changes:
 ext/POSIX/t/sigaction.t |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ext/POSIX/t/sigaction.t b/ext/POSIX/t/sigaction.t
index 5e2a6ad..81d699d 100644
--- a/ext/POSIX/t/sigaction.t
+++ b/ext/POSIX/t/sigaction.t
@@ -192,7 +192,7 @@ SKIP: {
 SKIP: {
     eval 'use POSIX qw(SA_SIGINFO); SA_SIGINFO';
     skip("no SA_SIGINFO", 1) if $@;
-    skip("SA_SIGINFO is broken on AIX 4.2", 1) if $^O.$Config{osvers} =~ 
m/^aix4\.2/;
+    skip("SA_SIGINFO is broken on AIX 4.2", 1) if ($^O.$Config{osvers}) =~ 
m/^aix4\.2/;
     sub hiphup {
        is($_[1]->{signo}, SIGHUP, "SA_SIGINFO got right signal");
     }

--
Perl5 Master Repository

Reply via email to