Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
[configure] fix two thinkos
  • Loading branch information
moritz committed Nov 16, 2010
1 parent fdbe423 commit c4c31a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Configure.pl
Expand Up @@ -61,7 +61,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
2 changes: 1 addition & 1 deletion build/gen_parrot.pl
Expand Up @@ -35,7 +35,7 @@ =head2 DESCRIPTION

{
no warnings;
if (open my $REV, '-|', "parrot_install${slash}bin${slash}parrot_config revision") {
if (open my $REV, '-|', "parrot_install${slash}bin${slash}parrot_config git_describe") {
my $revision = <$REV>;
close $REV;
$revision =~ s/\s.*//s;
Expand Down

0 comments on commit c4c31a1

Please sign in to comment.