~woda/woda/4.610

« back to all changes in this revision

Viewing changes to usr-local-woda/en/woda-max.pl

  • Committer: Xavier Brochard
  • Author(s): Richard Wolfschlegel
  • Date: 2010-08-25 21:40:34 UTC
  • Revision ID: xavier@alternatif.org-20100825214034-o2hdd7a4wyaiow11
fix Perl version numbering

Show diffs side-by-side

added added

removed removed

Lines of Context:
629
629
        $PERL = '' unless -e $PERL;
630
630
    }
631
631
    $PERLV      = $] + 0.0;                                                      # what Perl are we running for perl >= 5.6
632
 
    $PERLV      = $^V if $PERLV >= 5;                                            # old format, before Perl 5.6
 
632
    $PERLV      = $^V if $PERLV >= 5.6.0;                                            # old format, before Perl 5.6
633
633
    $TESTCGIDIR = $SCRIPTDIR . "/test";
634
634
}
635
635