Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
I think this is why URI is seg faulting. I have not fully tested this…
… with respect to its overall effect on rakudo star but it seems safe and appropriate enough. I think similar changes were made not long ago to ufo and maybe panda.
  • Loading branch information
ronaldxs committed Jul 2, 2012
1 parent 5138e08 commit 8fb57ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skel/tools/build/module-install.pl
Expand Up @@ -41,7 +41,7 @@
$module_to_path{$module} = $module_file;
$usages_of{$module} = [];
while (<$fh>) {
if (/^\s* use \s+ (\w+ (?: :: \w+)*)/x and my $used = $1) {
if (/^\s* (?:use|need) \s+ (\w+ (?: :: \w+)*)/x and my $used = $1) {
next if $used eq 'v6';
next if $used eq 'MONKEY_TYPING';

Expand Down

0 comments on commit 8fb57ac

Please sign in to comment.