aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2012-07-02 09:45:03 -0700
committerMoritz Lenz <moritz@faui2k3.org>2012-07-02 09:45:03 -0700
commit7e48e51c6079accbcf1d3c8592baf3e8d8432d49 (patch)
tree4086523815bd4d469c53ca4d691bdd9d95be9051
parent5138e0888babd75f24df94d4cc70276318e91490 (diff)
parent8fb57acf805b43099a950d6c022a3fb5dbe885ba (diff)
Merge pull request #8 from ronaldxs/patch-1
I think this is why URI is seg faulting. I have not fully tested this w...
-rw-r--r--skel/tools/build/module-install.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/skel/tools/build/module-install.pl b/skel/tools/build/module-install.pl
index 7fa4fbe..8cbc20b 100644
--- a/skel/tools/build/module-install.pl
+++ b/skel/tools/build/module-install.pl
@@ -41,7 +41,7 @@ while (@ARGV) {
$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';