Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace an nqp::p6parcel with a die for now.
This gets things building through to BOOTSTRAP.
  • Loading branch information
jnthn committed Aug 8, 2015
1 parent 63a8a38 commit 10efc4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Perl6/World.nqp
Expand Up @@ -693,7 +693,9 @@ class Perl6::World is HLL::World {
$DEBUG(" $arg") if $DEBUG;
}

$INC := nqp::p6parcel($INC, self.find_symbol(['Any']));
# XXXGLR
# $INC := nqp::p6parcel($INC, self.find_symbol(['Any']));
nqp::die('replace this p6parcel');
self.add_object($INC);
self.install_lexical_symbol(self.cur_lexpad,'@?INC',$INC);
}
Expand Down

0 comments on commit 10efc4c

Please sign in to comment.