diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2013-03-25 20:09:46 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2013-03-25 20:09:46 +0000 |
commit | 6eda9412f8dc717200dec22c57afdd2a46edfa8e (patch) | |
tree | c835d11c3e3f90de6a8561320ec54f077bfd358f /gnu/usr.bin/perl/cpan/IPC-SysV | |
parent | 19adbb7d6dbd1516758cad91978165088a19e917 (diff) |
import perl 5.16.3 from CPAN - worked on by Andrew Fresh and myself
Diffstat (limited to 'gnu/usr.bin/perl/cpan/IPC-SysV')
-rw-r--r-- | gnu/usr.bin/perl/cpan/IPC-SysV/Changes | 12 | ||||
-rw-r--r-- | gnu/usr.bin/perl/cpan/IPC-SysV/README | 2 | ||||
-rw-r--r-- | gnu/usr.bin/perl/cpan/IPC-SysV/regen.pl | 4 |
3 files changed, 15 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/cpan/IPC-SysV/Changes b/gnu/usr.bin/perl/cpan/IPC-SysV/Changes index ed605596c97..692637bcf70 100644 --- a/gnu/usr.bin/perl/cpan/IPC-SysV/Changes +++ b/gnu/usr.bin/perl/cpan/IPC-SysV/Changes @@ -1,3 +1,15 @@ +2.03 - 2010-05-23 + + * fix CPAN #57530: IPC::Msg Documentation Bug + (thanks to Jonathan Hartzog for spotting this) + +2.02 - 2010-03-07 + + * fix CPAN #50762: mistaken use of $[ + (thanks to Zefram for spotting this) + * no need to specify an empty MAN3PODS in the core anymore + (thanks to Nicholas Clark for providing a patch) + 2.01 - 2009-03-15 released without changes diff --git a/gnu/usr.bin/perl/cpan/IPC-SysV/README b/gnu/usr.bin/perl/cpan/IPC-SysV/README index a9cb7bdd4d1..4b34bb3133d 100644 --- a/gnu/usr.bin/perl/cpan/IPC-SysV/README +++ b/gnu/usr.bin/perl/cpan/IPC-SysV/README @@ -1,4 +1,4 @@ -Version 2.x, Copyright (C) 2007, Marcus Holland-Moritz. +Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz. Version 1.x, Copyright (c) 1997, Graham Barr. diff --git a/gnu/usr.bin/perl/cpan/IPC-SysV/regen.pl b/gnu/usr.bin/perl/cpan/IPC-SysV/regen.pl index 776991298fc..3d709a545ec 100644 --- a/gnu/usr.bin/perl/cpan/IPC-SysV/regen.pl +++ b/gnu/usr.bin/perl/cpan/IPC-SysV/regen.pl @@ -28,7 +28,7 @@ sub make_constants my @outdated = grep { (-M) > $depage } @files; my @newdeps = grep { (-M) < $oldage } @deps; - print STDERR <<EOM; + print STDERR <<EOM if @outdated; *********************************************************************** @@ -85,7 +85,7 @@ EOM if ($@) { my $err = "Cannot regenerate constants:\n$@\n"; - if ($[ < 5.006) { + if ($] < 5.006) { print STDERR $err; exit 0; } |