aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2010-11-23 13:48:07 -0600
committerpmichaud <pmichaud@pobox.com>2010-11-23 13:48:07 -0600
commit8d848b7a893cfa60fef4fa5e68c96d75a4aada51 (patch)
treeeadffe118ad8fb1052c471070f26d4ae3a38fdfa
parent41aa60f7252bce85cdd050a17d09f6c3b6075d9f (diff)
Update Rakudo and Parrot version numbers.
-rw-r--r--Makefile4
-rw-r--r--skel/build/gen_parrot.pl21
2 files changed, 3 insertions, 22 deletions
diff --git a/Makefile b/Makefile
index 3561d05..a8ea403 100644
--- a/Makefile
+++ b/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)
diff --git a/skel/build/gen_parrot.pl b/skel/build/gen_parrot.pl
index 1d1a120..bf8ed5e 100644
--- a/skel/build/gen_parrot.pl
+++ b/skel/build/gen_parrot.pl
@@ -24,26 +24,7 @@ use 5.008;
# 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') {