Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:rakudo/rakudo
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed Apr 18, 2009
2 parents 91d6204 + 8a3a9a9 commit 2e3a51a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build/gen_parrot.pl
Expand Up @@ -27,15 +27,14 @@ =head2 DESCRIPTION
## determine what revision of Parrot we require
open my $REQ, "build/PARROT_REVISION"
|| die "cannot open build/PARROT_REVISION\n";
my $required = <$REQ>; chomp $required;
my $required = 0+<$REQ>;
close $REQ;

{
no warnings;
if (open my $REV, '-|', "parrot${slash}parrot_config revision") {
my $revision = <$REV>;
my $revision = 0+<$REV>;
close $REV;
chomp $revision;
if ($revision >= $required) {
print "Parrot r$revision already available (r$required required)\n";
exit(0);
Expand Down

0 comments on commit 2e3a51a

Please sign in to comment.