Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix comparison logic thinko in Configure.pl, mikehh++
  • Loading branch information
moritz committed Nov 16, 2010
1 parent 9256321 commit f73bf4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configure.pl
Expand Up @@ -62,7 +62,7 @@
if (!%config) {
$parrot_errors .= "Unable to locate parrot_config\n";
}
elsif (compare_parrot_revs($reqsvn, $config{'git_describe'}) < 0 &&
elsif (compare_parrot_revs($reqsvn, $config{'git_describe'}) > 0 &&
($reqpar eq '' || version_int($reqpar) > version_int($config{'VERSION'}))) {
$parrot_errors .= "Parrot revision $reqsvn required (currently $config{'git_describe'})\n";
}
Expand Down

0 comments on commit f73bf4d

Please sign in to comment.