Skip to content

Commit

Permalink
releasd reakudo is so broken that pls does not run; use master for now
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jul 24, 2010
1 parent a4fc7bb commit b3012ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions build/buildall.pl
Expand Up @@ -39,16 +39,23 @@

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;

use Cwd;
my $proto_lib = getcwd() . '/proto/lib';
$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(xml-writer svg svg-plot)) {
system('perl6', 'proof-of-concept', $_);
for (qw(zavolaj xml-writer svg svg-plot)) {
print "Installing $_...\n";
system('perl6', 'proof-of-concept', $_) == 0
or die "Can't run poc $_ ($?): $!";

}


Expand Down
2 changes: 1 addition & 1 deletion build/download-stuff.pl
Expand Up @@ -64,7 +64,7 @@ sub fetch_project {
# but possible )
#
my %tags = (
rakudo => '2010.07',
rakudo => 'master', # XXX replace by tag of Rakudo point release
proto => 'pls_rstar_hacks',
);

Expand Down

0 comments on commit b3012ed

Please sign in to comment.