diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-06-17 08:54:41 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-06-17 08:54:41 +0000 |
commit | 97e8bd194aec20f01864baa22dfcbed38daa0f40 (patch) | |
tree | bcf5f709aaee21c7794bc164e8e7d9d53cce6d04 /utils/perlivp.PL | |
parent | 3e50adc28ddeb582e1860e49e66ba3adfef175d6 (diff) | |
download | perl-97e8bd194aec20f01864baa22dfcbed38daa0f40.tar.gz |
More forgiving version comparison in perlivp.
p4raw-id: //depot/perl@22940
Diffstat (limited to 'utils/perlivp.PL')
-rw-r--r-- | utils/perlivp.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/perlivp.PL b/utils/perlivp.PL index 7db1090dd6..90598691d6 100644 --- a/utils/perlivp.PL +++ b/utils/perlivp.PL @@ -123,7 +123,7 @@ my \$ivp_VERSION = $]; !GROK!THIS! print OUT <<'!NO!SUBS!'; -if ($ivp_VERSION == $]) { +if ($ivp_VERSION eq $]) { print "## Perl version `$]' appears installed as expected.\n" if $opt{'v'}; print "ok 2\n"; $pass__total++; |