summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-03-26 11:14:00 +0100
committerjocuri%softhome.net <>2004-03-26 11:14:00 +0100
commit6bc11c20a6d37811b878c9e5e296a35153c07198 (patch)
treeaec963ff81444859481c6d3b97437ebb31f01c2e /checksetup.pl
parentd19be29a71036cf9c8572d1c53d0050420f3370e (diff)
downloadbugzilla-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.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
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";