Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
precompilation order: consider require
  • Loading branch information
moritz committed Nov 23, 2013
1 parent 5fc3b97 commit a0934a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build/module-install.pl
Expand Up @@ -42,7 +42,7 @@
$module_to_path{$module} = $module_file;
$usages_of{$module} = [];
while (<$fh>) {
if (/^\s* (?:use|need) \s+ (\w+ (?: :: \w+)*)/x and my $used = $1) {
if (/^\s* (?:use|need|require) \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 a0934a6

Please sign in to comment.