aboutsummaryrefslogtreecommitdiff
path: root/build/buildall.pl
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2010-07-24 23:02:47 +0200
committerMoritz Lenz <moritz@faui2k3.org>2010-07-24 23:02:47 +0200
commitecda2534e2f61e97ec8bb7c5111ad3a57e99d28e (patch)
tree25dd13fbb9d5d5425b7be5a652b1623bf335c5ce /build/buildall.pl
parent07f2c7d4ed0a9bd67af0671e85d33fd1981d75f5 (diff)
try to build a few modules with proto/pls
Diffstat (limited to 'build/buildall.pl')
-rw-r--r--build/buildall.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/build/buildall.pl b/build/buildall.pl
index da06add..f7f81ed 100644
--- a/build/buildall.pl
+++ b/build/buildall.pl
@@ -41,6 +41,15 @@ print "Things look good so far, executing a very simple Perl 6 program worked!\n
copy('ufo/ufo', "$inst_path/bin/") or die "Can't copy ufo/ufo to $inst_path/bin: $!";
print "We now have alien technology that lets us install more modules...\n";
+$ENV{PLS_NO_FETCH} = 1;
+
+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(xml-writer svg svg-plot)) {
+ system('perl6', 'proof-of-concept', $_);
+}
+
sub read_parrot_config {
my %config = ();