diff options
author | jocuri%softhome.net <> | 2004-03-26 11:14:00 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-03-26 11:14:00 +0100 |
commit | 6bc11c20a6d37811b878c9e5e296a35153c07198 (patch) | |
tree | aec963ff81444859481c6d3b97437ebb31f01c2e | |
parent | d19be29a71036cf9c8572d1c53d0050420f3370e (diff) | |
download | bugzilla-6bc11c20a6d37811b878c9e5e296a35153c07198.tar.gz bugzilla-6bc11c20a6d37811b878c9e5e296a35153c07198.tar.xz |
Patch for bug 238693: replace depreciated v-strings with calls to the pack() function; patch by GavinS <bugzilla@chimpychompy.org>; r=kiko; a=justdave.
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 6d2c79189..f2e14bf34 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -313,7 +313,7 @@ my $patchreader = have_vers("PatchReader",0); print "\n" unless $silent; if ($^O =~ /MSWin32/i) { - if ($^V lt v5.8.0) { + if ($^V lt pack('U*',5,8,0)) { print "The required ActivePerl modules are available at OpenInteract's ppm repository.\n"; print "You can add the repository with the following command:\n"; print " ppm rep add oi http://openinteract.sourceforge.net/ppmpackages/\n\n"; |