diff options
author | Justin Davis <jrcd83@gmail.com> | 2012-06-02 19:02:30 +0200 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2012-06-02 19:02:30 +0200 |
commit | 70caeb808e21e3ceadadb4f8e18a6578fa0a8bc0 (patch) | |
tree | c945e5cd4fb9243bc705eafbfe79f22d6e3207a6 | |
parent | 59f20f067492dec2bdc38697f12e1a64ec72f80b (diff) | |
download | genpkg-70caeb808e21e3ceadadb4f8e18a6578fa0a8bc0.tar.gz genpkg-70caeb808e21e3ceadadb4f8e18a6578fa0a8bc0.tar.xz |
Read core modules in the ext/ dir too.
-rwxr-xr-x | misc/perlcore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/perlcore b/misc/perlcore index 0f1a2a2..cfc3ef0 100755 --- a/misc/perlcore +++ b/misc/perlcore @@ -62,7 +62,7 @@ sub scan_distroot sub findmods { my($srcdir) = @_; - return map { scan_distroot($_) } glob "$srcdir/{cpan,dist}"; + return map { scan_distroot($_) } glob "$srcdir/{cpan,dist,ext}"; } # ---------------------------------------- |