summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/cpan/IPC-SysV
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/perl/cpan/IPC-SysV')
-rw-r--r--gnu/usr.bin/perl/cpan/IPC-SysV/Changes12
-rw-r--r--gnu/usr.bin/perl/cpan/IPC-SysV/README2
-rw-r--r--gnu/usr.bin/perl/cpan/IPC-SysV/regen.pl4
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;
}