aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README10
-rw-r--r--build/buildall.pl2
2 files changed, 9 insertions, 3 deletions
diff --git a/README b/README
index ca29951..758fc80 100644
--- a/README
+++ b/README
@@ -5,8 +5,14 @@ of modules we want included in the distribution.
This repository doesn't contain a distribution, it contains the tools
and scripts to build a distribution. Run "make VERSION=yyyy.mm" to populate
-a distribution image in the rakudo-star-yyyy.mm/ directory. The build
-system assumes that you have the following tools available:
+a distribution image in the rakudo-star-yyyy.mm/ directory.
+
+*** This task should only be done by a release manager, or for testing
+your changes if you want to contribute to Rakudo Star. If you just want
+to use Rakudo Star, please download a pre-built tar.gz from
+http://github.com/perl6/book/downloads ***
+
+The build system assumes that you have the following tools available:
* perl
* make
diff --git a/build/buildall.pl b/build/buildall.pl
index 3aa9d8b..55dc9c6 100644
--- a/build/buildall.pl
+++ b/build/buildall.pl
@@ -51,7 +51,7 @@ $ENV{PERL6LIB} = $proto_lib;
chdir 'proto' or die "Can't chdir to 'proto': $!";
# TODO: find a better way to determine which modules to install in this step.
# Likely derive from @modules or so.
-for (qw(zavolaj xml-writer svg svg-plot)) {
+for (qw(zavolaj xml-writer svg svg-plot Math-RungeKutta Math-Model)) {
print "Installing $_...\n";
system('perl6', 'proof-of-concept', $_) == 0
or die "Can't run poc $_ ($?): $!";