Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update Rakudo and Parrot version numbers.
  • Loading branch information
pmichaud committed Nov 23, 2010
1 parent 41aa60f commit 8d848b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 22 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,6 +1,6 @@
PARROT_VER = 2.9.1
PARROT_VER = 2.10.1
PARROT_REL = supported/$(PARROT_VER)
RAKUDO_VER = 2010.10
RAKUDO_VER = 2010.11

DISTDIR = rakudo-star-$(VERSION)

Expand Down
21 changes: 1 addition & 20 deletions skel/build/gen_parrot.pl
Expand Up @@ -24,26 +24,7 @@ =head2 DESCRIPTION
# Work out slash character to use.
my $slash = $^O eq 'MSWin32' ? '\\' : '/';

## determine what revision of Parrot we require
open my $REQ, "build/PARROT_REVISION"
|| die "cannot open build/PARROT_REVISION\n";
my ($reqsvn, $reqpar) = split(' ', <$REQ>);
$reqsvn += 0;
close $REQ;

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

chdir('parrot-2.9.1') || die "Can't chdir to 'parrot-2.9.1': $!";

chdir('parrot-2.10.1') || die "Can't chdir to 'parrot-2.10.1': $!";

## If we have a Makefile from a previous build, do a 'make realclean'
if (-f 'Makefile') {
Expand Down

0 comments on commit 8d848b7

Please sign in to comment.