aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/build/module-install.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build/module-install.pl b/tools/build/module-install.pl
index 6522154..2ed2589 100644
--- a/tools/build/module-install.pl
+++ b/tools/build/module-install.pl
@@ -42,7 +42,7 @@ while (<>) {
$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';