all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Difficulty with Perl graft
@ 2016-03-02  5:59 Leo Famulari
  2016-03-02  9:32 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Leo Famulari @ 2016-03-02  5:59 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2541 bytes --]

I'm trying to patch Perl in order to address CVE-2016-2381 [0].

It would be nice to use a graft for this since a change to Perl will
cause ~2700 rebuilds.

I started from the current tip of the master branch (eb8065cd2). Building
Perl gave me x2p2biyybcb2wac77qz9468asc5fm48i-perl-5.22.1.

Then, I applied the attached patch and rebuilt, yielding
jwdnhrv84spf400yfqqvsq2vsrpww7nk-perl-5.22.1.

Next, I built perl-carp-clan, just to see if something would build with
Perl. Okay.

Next, I tried to build apr. Since Perl is a run-time dependency, I
thought it would be easy to confirm that the graft was being applied.
OpenSSL is not in the dependency graph. But, it tries to rebuild Perl (I
had already built the grafted version) and fails as in the attached
build log. Here is the tail of the log, although I think there are signs
that something is wrong much earlier:

---

Checking your choice of C compiler and flags for coherency...
I've tried to compile and run the following simple program:

#include <stdio.h>
int main() { printf("Ok\n"); return(0); }

I used the command:

	gcc -o try -O2 -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/include -fstack-protector -L/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib try.c -lpthread -lnsl -ldl -lm -lcrypt -lutil -lc
	 ./try

and I got the following output:

/gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin/ld: cannot find /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.18/lib/libpthread.so.0
/gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin/ld: cannot find /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.18/lib/libpthread_nonshared.a
collect2: error: ld returned 1 exit status
I can't compile the test program.
(The supplied flags or libraries might be incorrect.)
 
You have a BIG problem.  Shall I abort Configure [y]  
Ok.  Stopping Configure.
phase `configure' failed after 0.7 seconds
builder for `/gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv' failed with exit code 1
@ build-failed /gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv - 1 builder for `/gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv' failed with exit code 1
cannot build derivation `/gnu/store/r5fx0sdw93rq87pdv0yfi0wfc5y6xc5v-apr-1.5.2.drv': 1 dependencies couldn't be built
guix build: error: build failed: build of `/gnu/store/r5fx0sdw93rq87pdv0yfi0wfc5y6xc5v-apr-1.5.2.drv' failed

---

[0]
https://www.debian.org/security/2016/dsa-3501

[-- Attachment #2: 0001-gnu-perl-Replace-with-patched-version-fixes-CVE-2016.patch --]
[-- Type: text/x-diff, Size: 6776 bytes --]

From 420b74527f2190c57ff31ead2db1b6c01b13ee9a Mon Sep 17 00:00:00 2001
Message-Id: <420b74527f2190c57ff31ead2db1b6c01b13ee9a.1456896877.git.leo@famulari.name>
From: Leo Famulari <leo@famulari.name>
Date: Tue, 1 Mar 2016 16:18:58 -0500
Subject: [PATCH 1/1] gnu: perl: Replace with patched version [fixes
 CVE-2016-2381].

* gnu/packages/patches/perl-CVE-2016-2381.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/perl.scm (perl)[replacement]: New field.
(perl-5.22.1-2): New variable.
---
 gnu-system.am                                 |   1 +
 gnu/packages/patches/perl-CVE-2016-2381.patch | 104 ++++++++++++++++++++++++++
 gnu/packages/perl.scm                         |  23 ++++++
 3 files changed, 128 insertions(+)
 create mode 100644 gnu/packages/patches/perl-CVE-2016-2381.patch

diff --git a/gnu-system.am b/gnu-system.am
index 526e991..9cf2194 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -640,6 +640,7 @@ dist_patch_DATA =						\
   gnu/packages/patches/patchutils-xfail-gendiff-tests.patch	\
   gnu/packages/patches/patch-hurd-path-max.patch		\
   gnu/packages/patches/perl-CVE-2015-8607.patch			\
+  gnu/packages/patches/perl-CVE-2016-2381.patch			\
   gnu/packages/patches/perl-autosplit-default-time.patch	\
   gnu/packages/patches/perl-deterministic-ordering.patch	\
   gnu/packages/patches/perl-finance-quote-unuse-mozilla-ca.patch \
diff --git a/gnu/packages/patches/perl-CVE-2016-2381.patch b/gnu/packages/patches/perl-CVE-2016-2381.patch
new file mode 100644
index 0000000..bba6c50
--- /dev/null
+++ b/gnu/packages/patches/perl-CVE-2016-2381.patch
@@ -0,0 +1,104 @@
+From 1237ea93fb2475a5ae576d5ee1358a5bb4ebe426 Mon Sep 17 00:00:00 2001
+From: Tony Cook <tony@develop-help.com>
+Date: Wed, 27 Jan 2016 11:52:15 +1100
+Subject: remove duplicate environment variables from environ
+
+If we see duplicate environment variables while iterating over
+environ[]:
+
+a) make sure we use the same value in %ENV that getenv() returns.
+
+Previously on a duplicate, %ENV would have the last entry for the name
+from environ[], but a typical getenv() would return the first entry.
+
+Rather than assuming all getenv() implementations return the first entry
+explicitly call getenv() to ensure they agree.
+
+b) remove duplicate entries from environ
+
+Previously if there was a duplicate definition for a name in environ[]
+setting that name in %ENV could result in an unsafe value being passed
+to a child process, so ensure environ[] has no duplicates.
+
+Patch-Name: fixes/CVE-2016-2381_duplicate_env.diff
+---
+ perl.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++--
+ 1 file changed, 49 insertions(+), 2 deletions(-)
+
+diff --git a/perl.c b/perl.c
+index 67d32ce..26aeb91 100644
+--- a/perl.c
++++ b/perl.c
+@@ -4277,23 +4277,70 @@ S_init_postdump_symbols(pTHX_ int argc, char **argv, char **env)
+ 	}
+ 	if (env) {
+ 	  char *s, *old_var;
++          STRLEN nlen;
+ 	  SV *sv;
++          HV *dups = newHV();
++
+ 	  for (; *env; env++) {
+ 	    old_var = *env;
+ 
+ 	    if (!(s = strchr(old_var,'=')) || s == old_var)
+ 		continue;
++            nlen = s - old_var;
+ 
+ #if defined(MSDOS) && !defined(DJGPP)
+ 	    *s = '\0';
+ 	    (void)strupr(old_var);
+ 	    *s = '=';
+ #endif
+-	    sv = newSVpv(s+1, 0);
+-	    (void)hv_store(hv, old_var, s - old_var, sv, 0);
++            if (hv_exists(hv, old_var, nlen)) {
++                const char *name = savepvn(old_var, nlen);
++
++                /* make sure we use the same value as getenv(), otherwise code that
++                   uses getenv() (like setlocale()) might see a different value to %ENV
++                 */
++                sv = newSVpv(PerlEnv_getenv(name), 0);
++
++                /* keep a count of the dups of this name so we can de-dup environ later */
++                if (hv_exists(dups, name, nlen))
++                    ++SvIVX(*hv_fetch(dups, name, nlen, 0));
++                else
++                    (void)hv_store(dups, name, nlen, newSViv(1), 0);
++
++                Safefree(name);
++            }
++            else {
++                sv = newSVpv(s+1, 0);
++            }
++	    (void)hv_store(hv, old_var, nlen, sv, 0);
+ 	    if (env_is_not_environ)
+ 	        mg_set(sv);
+ 	  }
++          if (HvKEYS(dups)) {
++              /* environ has some duplicate definitions, remove them */
++              HE *entry;
++              hv_iterinit(dups);
++              while ((entry = hv_iternext_flags(dups, 0))) {
++                  STRLEN nlen;
++                  const char *name = HePV(entry, nlen);
++                  IV count = SvIV(HeVAL(entry));
++                  IV i;
++                  SV **valp = hv_fetch(hv, name, nlen, 0);
++
++                  assert(valp);
++
++                  /* try to remove any duplicate names, depending on the
++                   * implementation used in my_setenv() the iteration might
++                   * not be necessary, but let's be safe.
++                   */
++                  for (i = 0; i < count; ++i)
++                      my_setenv(name, 0);
++
++                  /* and set it back to the value we set $ENV{name} to */
++                  my_setenv(name, SvPV_nolen(*valp));
++              }
++          }
++          SvREFCNT_dec_NN(dups);
+       }
+ #endif /* USE_ENVIRON_ARRAY */
+ #endif /* !PERL_MICRO */
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 6ca62aa..d67870f 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -37,6 +37,7 @@
 (define-public perl
   ;; Yeah, Perl...  It is required early in the bootstrap process by Linux.
   (package
+    (replacement perl-fixed)
     (name "perl")
     (version "5.22.1")
     (source (origin
@@ -114,6 +115,28 @@
     (home-page "http://www.perl.org/")
     (license gpl1+)))                          ; or "Artistic"
 
+(define perl-fixed
+  (package
+    (inherit perl)
+    (replacement #f)
+    (source
+      (let ((name "perl") (version "5.22.1"))
+        (origin
+          (method url-fetch)
+          (uri (string-append "http://www.cpan.org/src/5.0/perl-"
+                              version ".tar.gz"))
+          (sha256
+           (base32
+            "09wg24w5syyafyv87l6z8pxwz4bjgcdj996bx5844k6m9445sirb"))
+          (patches (map search-patch
+                        '("perl-no-sys-dirs.patch"
+                          "perl-autosplit-default-time.patch"
+                          "perl-source-date-epoch.patch"
+                          "perl-deterministic-ordering.patch"
+                          "perl-no-build-time.patch"
+                          "perl-CVE-2015-8607.patch"
+                          "perl-CVE-2016-2381.patch"))))))))
+
 (define-public perl-algorithm-c3
   (package
     (name "perl-algorithm-c3")
-- 
2.7.1


[-- Attachment #3: build-log --]
[-- Type: text/plain, Size: 480831 bytes --]

;;; note: source file /home/leo/work/guix/gnu/packages/perl.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/perl.go
;;; note: source file /home/leo/work/guix/gnu/packages/graphics.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/graphics.go
;;; note: source file /home/leo/work/guix/gnu/packages/tls.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/tls.go
;;; note: source file /home/leo/work/guix/gnu/packages/tls.scm
;;;       newer than compiled /home/leo/.cache/guile/ccache/2.0-LE-8-2.0/home/leo/work/guix/gnu/packages/tls.scm.go
;;; note: source file /home/leo/work/guix/gnu/packages/ssh.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/ssh.go
;;; note: source file /home/leo/work/guix/gnu/packages/ssh.scm
;;;       newer than compiled /home/leo/.cache/guile/ccache/2.0-LE-8-2.0/home/leo/work/guix/gnu/packages/ssh.scm.go
;;; note: source file /home/leo/work/guix/gnu/packages/statistics.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/statistics.go
;;; note: source file /home/leo/work/guix/gnu/packages/statistics.scm
;;;       newer than compiled /home/leo/.cache/guile/ccache/2.0-LE-8-2.0/home/leo/work/guix/gnu/packages/statistics.scm.go
;;; note: source file /home/leo/work/guix/gnu/packages/bioinformatics.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/bioinformatics.go
;;; note: source file /home/leo/work/guix/gnu/packages/bioinformatics.scm
;;;       newer than compiled /home/leo/.cache/guile/ccache/2.0-LE-8-2.0/home/leo/work/guix/gnu/packages/bioinformatics.scm.go
;;; note: source file /home/leo/work/guix/gnu/packages/parallel.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/parallel.go
;;; note: source file /home/leo/work/guix/gnu/packages/xfce.scm
;;;       newer than compiled /home/leo/work/guix/gnu/packages/xfce.go
;;; note: source file /home/leo/pkgs/leo/packages/borg.scm
;;;       newer than compiled /home/leo/.cache/guile/ccache/2.0-LE-8-2.0/home/leo/work/pkgs/leo/packages/borg.scm.go
;;; note: source file /home/leo/pkgs/leo/packages/ddar.scm
;;;       newer than compiled /home/leo/.cache/guile/ccache/2.0-LE-8-2.0/home/leo/work/pkgs/leo/packages/ddar.scm.go
substitute: warning: failed to install locale: Invalid argument
The following derivations will be built:
   /gnu/store/r5fx0sdw93rq87pdv0yfi0wfc5y6xc5v-apr-1.5.2.drv
   /gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv
warning: failed to install locale: Invalid argument
@ build-started /gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv - x86_64-linux /var/log/guix/drvs/iz//hqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv.bz2
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/9q1687didb5izajfqszkz7vzrhxyz4sb-make-boot0-4.1/bin:/gnu/store/cib4xyif4g22ipd31bbfz58bzwpkz5gq-diffutils-boot0-3.3/bin:/gnu/store/4ijiwsy3js29rvsx55927rakirmsbn04-findutils-boot0-4.6.0/bin:/gnu/store/azbpq38sjr2332vdm0llpa8mh9rjk0d6-file-boot0-5.25/bin:/gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/bin:/gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin:/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin'
environment variable `CPATH' set to `/gnu/store/azbpq38sjr2332vdm0llpa8mh9rjk0d6-file-boot0-5.25/include:/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/include:/gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/azbpq38sjr2332vdm0llpa8mh9rjk0d6-file-boot0-5.25/lib:/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib:/gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/lib'
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
warning: failed to install 'en_US.utf8' locale: Invalid argument
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
perl-5.22.1/
perl-5.22.1/.dir-locals.el
perl-5.22.1/AUTHORS
perl-5.22.1/Artistic
perl-5.22.1/Changes
perl-5.22.1/Configure
perl-5.22.1/Configure.orig
perl-5.22.1/Copying
perl-5.22.1/Cross/
perl-5.22.1/Cross/Makefile
perl-5.22.1/Cross/Makefile-cross-SH
perl-5.22.1/Cross/Makefile.SH.patch
perl-5.22.1/Cross/README
perl-5.22.1/Cross/README.new
perl-5.22.1/Cross/TODO
perl-5.22.1/Cross/build-arm-n770-sh
perl-5.22.1/Cross/cflags-cross-arm
perl-5.22.1/Cross/config
perl-5.22.1/Cross/config.sh-arm-linux
perl-5.22.1/Cross/config.sh-arm-linux-n770
perl-5.22.1/Cross/generate_config_sh
perl-5.22.1/Cross/installperl.patch
perl-5.22.1/Cross/warp
perl-5.22.1/EXTERN.h
perl-5.22.1/INSTALL
perl-5.22.1/INTERN.h
perl-5.22.1/MANIFEST
perl-5.22.1/META.json
perl-5.22.1/META.yml
perl-5.22.1/Makefile.SH
perl-5.22.1/Makefile.micro
perl-5.22.1/NetWare/
perl-5.22.1/NetWare/CLIBsdio.h
perl-5.22.1/NetWare/CLIBstr.h
perl-5.22.1/NetWare/CLIBstuf.c
perl-5.22.1/NetWare/CLIBstuf.h
perl-5.22.1/NetWare/MP.imp
perl-5.22.1/NetWare/Main.c
perl-5.22.1/NetWare/Makefile
perl-5.22.1/NetWare/NWTInfo.c
perl-5.22.1/NetWare/NWUtil.c
perl-5.22.1/NetWare/Nwmain.c
perl-5.22.1/NetWare/Nwpipe.c
perl-5.22.1/NetWare/bat/
perl-5.22.1/NetWare/bat/Buildtype.bat
perl-5.22.1/NetWare/bat/SetCodeWar.bat
perl-5.22.1/NetWare/bat/SetNWBld.bat
perl-5.22.1/NetWare/bat/Setnlmsdk.bat
perl-5.22.1/NetWare/bat/ToggleD2.bat
perl-5.22.1/NetWare/config.wc
perl-5.22.1/NetWare/config_H.wc
perl-5.22.1/NetWare/config_h.PL
perl-5.22.1/NetWare/config_sh.PL
perl-5.22.1/NetWare/deb.h
perl-5.22.1/NetWare/dl_netware.xs
perl-5.22.1/NetWare/intdef.h
perl-5.22.1/NetWare/interface.c
perl-5.22.1/NetWare/interface.cpp
perl-5.22.1/NetWare/interface.h
perl-5.22.1/NetWare/iperlhost.h
perl-5.22.1/NetWare/netware.h
perl-5.22.1/NetWare/nw5.c
perl-5.22.1/NetWare/nw5iop.h
perl-5.22.1/NetWare/nw5sck.c
perl-5.22.1/NetWare/nw5sck.h
perl-5.22.1/NetWare/nw5thread.c
perl-5.22.1/NetWare/nw5thread.h
perl-5.22.1/NetWare/nwhashcls.cpp
perl-5.22.1/NetWare/nwhashcls.h
perl-5.22.1/NetWare/nwperlhost.h
perl-5.22.1/NetWare/nwperlsys.c
perl-5.22.1/NetWare/nwperlsys.h
perl-5.22.1/NetWare/nwpipe.h
perl-5.22.1/NetWare/nwplglob.c
perl-5.22.1/NetWare/nwplglob.h
perl-5.22.1/NetWare/nwstdio.h
perl-5.22.1/NetWare/nwtinfo.h
perl-5.22.1/NetWare/nwutil.h
perl-5.22.1/NetWare/nwvmem.h
perl-5.22.1/NetWare/perllib.cpp
perl-5.22.1/NetWare/splittree.pl
perl-5.22.1/NetWare/sv_nw.c
perl-5.22.1/NetWare/t/
perl-5.22.1/NetWare/t/NWModify.pl
perl-5.22.1/NetWare/t/NWScripts.pl
perl-5.22.1/NetWare/t/Readme.txt
perl-5.22.1/NetWare/testnlm/
perl-5.22.1/NetWare/testnlm/echo/
perl-5.22.1/NetWare/testnlm/echo/echo.c
perl-5.22.1/NetWare/testnlm/type/
perl-5.22.1/NetWare/testnlm/type/type.c
perl-5.22.1/NetWare/win32ish.h
perl-5.22.1/Policy_sh.SH
perl-5.22.1/Porting/
perl-5.22.1/Porting/GitUtils.pm
perl-5.22.1/Porting/Glossary
perl-5.22.1/Porting/Maintainers
perl-5.22.1/Porting/Maintainers.pl
perl-5.22.1/Porting/Maintainers.pm
perl-5.22.1/Porting/README.pod
perl-5.22.1/Porting/README.y2038
perl-5.22.1/Porting/acknowledgements.pl
perl-5.22.1/Porting/add-package.pl
perl-5.22.1/Porting/bench.pl
perl-5.22.1/Porting/bisect-example.sh
perl-5.22.1/Porting/bisect-runner.pl
perl-5.22.1/Porting/bisect.pl
perl-5.22.1/Porting/bump-perl-version
perl-5.22.1/Porting/check-cpan-pollution
perl-5.22.1/Porting/check83.pl
perl-5.22.1/Porting/checkAUTHORS.pl
perl-5.22.1/Porting/checkURL.pl
perl-5.22.1/Porting/checkVERSION.pl
perl-5.22.1/Porting/checkansi.pl
perl-5.22.1/Porting/checkcfgvar.pl
perl-5.22.1/Porting/checkpodencoding.pl
perl-5.22.1/Porting/cherrymaint
perl-5.22.1/Porting/cmpVERSION.pl
perl-5.22.1/Porting/config.sh
perl-5.22.1/Porting/config_H
perl-5.22.1/Porting/config_h.pl
perl-5.22.1/Porting/core-cpan-diff
perl-5.22.1/Porting/corecpan.pl
perl-5.22.1/Porting/corelist-diff
perl-5.22.1/Porting/corelist-perldelta.pl
perl-5.22.1/Porting/corelist.pl
perl-5.22.1/Porting/deparse-skips.txt
perl-5.22.1/Porting/epigraphs.pod
perl-5.22.1/Porting/exec-bit.txt
perl-5.22.1/Porting/exercise_makedef.pl
perl-5.22.1/Porting/expand-macro.pl
perl-5.22.1/Porting/findrfuncs
perl-5.22.1/Porting/git-deltatool
perl-5.22.1/Porting/git-find-p4-change
perl-5.22.1/Porting/git-make-p4-refs
perl-5.22.1/Porting/how_to_write_a_perldelta.pod
perl-5.22.1/Porting/leakfinder.pl
perl-5.22.1/Porting/make-rmg-checklist
perl-5.22.1/Porting/make_dot_patch.pl
perl-5.22.1/Porting/make_modlib_cpan.pl
perl-5.22.1/Porting/make_snapshot.pl
perl-5.22.1/Porting/makemeta
perl-5.22.1/Porting/makerel
perl-5.22.1/Porting/manicheck
perl-5.22.1/Porting/manisort
perl-5.22.1/Porting/new-perldelta.pl
perl-5.22.1/Porting/newtests-perldelta.pl
perl-5.22.1/Porting/perldelta_template.pod
perl-5.22.1/Porting/perlhist_calculate.pl
perl-5.22.1/Porting/pod_lib.pl
perl-5.22.1/Porting/pod_rules.pl
perl-5.22.1/Porting/podtidy
perl-5.22.1/Porting/pumpkin.pod
perl-5.22.1/Porting/release_announcement_template.txt
perl-5.22.1/Porting/release_managers_guide.pod
perl-5.22.1/Porting/release_schedule.pod
perl-5.22.1/Porting/rt_list_patches
perl-5.22.1/Porting/sort_perldiag.pl
perl-5.22.1/Porting/sync-with-cpan
perl-5.22.1/Porting/timecheck.c
perl-5.22.1/Porting/timecheck2.c
perl-5.22.1/Porting/todo.pod
perl-5.22.1/Porting/valgrindpp.pl
perl-5.22.1/README
perl-5.22.1/README.aix
perl-5.22.1/README.amiga
perl-5.22.1/README.android
perl-5.22.1/README.bs2000
perl-5.22.1/README.ce
perl-5.22.1/README.cn
perl-5.22.1/README.cygwin
perl-5.22.1/README.dos
perl-5.22.1/README.freebsd
perl-5.22.1/README.haiku
perl-5.22.1/README.hpux
perl-5.22.1/README.hurd
perl-5.22.1/README.irix
perl-5.22.1/README.jp
perl-5.22.1/README.ko
perl-5.22.1/README.linux
perl-5.22.1/README.macos
perl-5.22.1/README.macosx
perl-5.22.1/README.micro
perl-5.22.1/README.netware
perl-5.22.1/README.openbsd
perl-5.22.1/README.os2
perl-5.22.1/README.os390
perl-5.22.1/README.os400
perl-5.22.1/README.plan9
perl-5.22.1/README.qnx
perl-5.22.1/README.riscos
perl-5.22.1/README.solaris
perl-5.22.1/README.symbian
perl-5.22.1/README.synology
perl-5.22.1/README.tru64
perl-5.22.1/README.tw
perl-5.22.1/README.vms
perl-5.22.1/README.vos
perl-5.22.1/README.win32
perl-5.22.1/TestInit.pm
perl-5.22.1/XSUB.h
perl-5.22.1/asan_ignore
perl-5.22.1/autodoc.pl
perl-5.22.1/av.c
perl-5.22.1/av.h
perl-5.22.1/caretx.c
perl-5.22.1/cflags.SH
perl-5.22.1/charclass_invlists.h
perl-5.22.1/config_h.SH
perl-5.22.1/configpm
perl-5.22.1/configure.com
perl-5.22.1/configure.gnu
perl-5.22.1/cop.h
perl-5.22.1/cpan/
perl-5.22.1/cpan/.dir-locals.el
perl-5.22.1/cpan/Archive-Tar/
perl-5.22.1/cpan/Archive-Tar/bin/
perl-5.22.1/cpan/Archive-Tar/bin/ptar
perl-5.22.1/cpan/Archive-Tar/bin/ptardiff
perl-5.22.1/cpan/Archive-Tar/bin/ptargrep
perl-5.22.1/cpan/Archive-Tar/lib/
perl-5.22.1/cpan/Archive-Tar/lib/Archive/
perl-5.22.1/cpan/Archive-Tar/lib/Archive/Tar/
perl-5.22.1/cpan/Archive-Tar/lib/Archive/Tar.pm
perl-5.22.1/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm
perl-5.22.1/cpan/Archive-Tar/lib/Archive/Tar/File.pm
perl-5.22.1/cpan/Archive-Tar/t/
perl-5.22.1/cpan/Archive-Tar/t/01_use.t
perl-5.22.1/cpan/Archive-Tar/t/02_methods.t
perl-5.22.1/cpan/Archive-Tar/t/03_file.t
perl-5.22.1/cpan/Archive-Tar/t/04_resolved_issues.t
perl-5.22.1/cpan/Archive-Tar/t/05_iter.t
perl-5.22.1/cpan/Archive-Tar/t/06_error.t
perl-5.22.1/cpan/Archive-Tar/t/08_ptargrep.t
perl-5.22.1/cpan/Archive-Tar/t/90_symlink.t
perl-5.22.1/cpan/Archive-Tar/t/99_pod.t
perl-5.22.1/cpan/Archive-Tar/t/src/
perl-5.22.1/cpan/Archive-Tar/t/src/header/
perl-5.22.1/cpan/Archive-Tar/t/src/header/signed.tar
perl-5.22.1/cpan/Archive-Tar/t/src/linktest/
perl-5.22.1/cpan/Archive-Tar/t/src/linktest/linktest_missing_dir.tar
perl-5.22.1/cpan/Archive-Tar/t/src/linktest/linktest_with_dir.tar
perl-5.22.1/cpan/Archive-Tar/t/src/long/
perl-5.22.1/cpan/Archive-Tar/t/src/long/b
perl-5.22.1/cpan/Archive-Tar/t/src/long/bar.tar
perl-5.22.1/cpan/Archive-Tar/t/src/long/foo.tbz
perl-5.22.1/cpan/Archive-Tar/t/src/long/foo.tgz
perl-5.22.1/cpan/Archive-Tar/t/src/short/
perl-5.22.1/cpan/Archive-Tar/t/src/short/b
perl-5.22.1/cpan/Archive-Tar/t/src/short/bar.tar
perl-5.22.1/cpan/Archive-Tar/t/src/short/foo.tbz
perl-5.22.1/cpan/Archive-Tar/t/src/short/foo.tgz
perl-5.22.1/cpan/AutoLoader/
perl-5.22.1/cpan/AutoLoader/lib/
perl-5.22.1/cpan/AutoLoader/lib/AutoLoader.pm
perl-5.22.1/cpan/AutoLoader/lib/AutoSplit.pm
perl-5.22.1/cpan/AutoLoader/t/
perl-5.22.1/cpan/AutoLoader/t/01AutoLoader.t
perl-5.22.1/cpan/AutoLoader/t/02AutoSplit.t
perl-5.22.1/cpan/B-Debug/
perl-5.22.1/cpan/B-Debug/Debug.pm
perl-5.22.1/cpan/B-Debug/t/
perl-5.22.1/cpan/B-Debug/t/debug.t
perl-5.22.1/cpan/CPAN/
perl-5.22.1/cpan/CPAN-Meta/
perl-5.22.1/cpan/CPAN-Meta-Requirements/
perl-5.22.1/cpan/CPAN-Meta-Requirements/lib/
perl-5.22.1/cpan/CPAN-Meta-Requirements/lib/CPAN/
perl-5.22.1/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/
perl-5.22.1/cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/accepts.t
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/bad_version_hook.t
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/basic.t
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/finalize.t
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/from-hash.t
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/merge.t
perl-5.22.1/cpan/CPAN-Meta-Requirements/t/strings.t
perl-5.22.1/cpan/CPAN-Meta-YAML/
perl-5.22.1/cpan/CPAN-Meta-YAML/lib/
perl-5.22.1/cpan/CPAN-Meta-YAML/lib/CPAN/
perl-5.22.1/cpan/CPAN-Meta-YAML/lib/CPAN/Meta/
perl-5.22.1/cpan/CPAN-Meta-YAML/lib/CPAN/Meta/YAML.pm
perl-5.22.1/cpan/CPAN-Meta-YAML/t/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/01_api.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/01_compile.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/10_read.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/11_read_string.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/12_write.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/13_write_string.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/20_subclass.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/21_yamlpm_compat.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/30_yaml_spec_tml.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/31_local_tml.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/32_world_tml.t
perl-5.22.1/cpan/CPAN-Meta-YAML/t/README.md
perl-5.22.1/cpan/CPAN-Meta-YAML/t/data/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/data/ascii.yml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/data/latin1.yml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/data/multibyte.yml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/data/utf_16_le_bom.yml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/data/utf_8_bom.yml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/lib/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/lib/TestBridge.pm
perl-5.22.1/cpan/CPAN-Meta-YAML/t/lib/TestML/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/lib/TestML/Tiny.pm
perl-5.22.1/cpan/CPAN-Meta-YAML/t/lib/TestUtils.pm
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/dump-error/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/dump-error/circular.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/load-error/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/load-error/document.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/load-error/scalar.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/load-error/tag.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/perl-to-yaml/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/perl-to-yaml/quoting.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/collection.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/comment.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/document.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/mapping.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/quoting.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/scalar.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/sequence.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-spec/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-spec/basic-data.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-spec/unicode.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Acme-Time-Baby.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Data-Swap.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Games-Nintendo-Wii-Mii.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/HTML-WebDAO.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/ITS-SIN-FIDS-Content-XML.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Plagger.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Spreadsheet-Read.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Template-Provider-Unicode-Japanese.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/Vanilla-Perl.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/YAML-Tiny-META.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/toolbar.tml
perl-5.22.1/cpan/CPAN-Meta-YAML/t/tml-world/yaml_org.tml
perl-5.22.1/cpan/CPAN-Meta/lib/
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/Converter.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/Feature.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History/
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/Merge.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/Prereqs.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/Spec.pm
perl-5.22.1/cpan/CPAN-Meta/lib/CPAN/Meta/Validator.pm
perl-5.22.1/cpan/CPAN-Meta/t/
perl-5.22.1/cpan/CPAN-Meta/t/converter-bad.t
perl-5.22.1/cpan/CPAN-Meta/t/converter-fail.t
perl-5.22.1/cpan/CPAN-Meta/t/converter-fragments.t
perl-5.22.1/cpan/CPAN-Meta/t/converter.t
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/META-1_0.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/META-1_1.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/META-1_2.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/META-1_3.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/META-1_4.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fail/META-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/107650337-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/1598804075-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/1927486199-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/1985980974-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/2031017050-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/284247103-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/344981821-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/35478989-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/98042513-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/META-1_2.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/META-1_3.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/META-1_4.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/META-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/invalid-meta-spec-version.json
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/invalid-meta-spec-version.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/meta-spec-version-trailing-zeros.json
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/meta-spec-version-trailing-zeros.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/restrictive-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-fixable/version-ranges-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-test/
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-1_0.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-1_1.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-1_2.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-1_3.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-1_4.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-test/META-2.meta
perl-5.22.1/cpan/CPAN-Meta/t/data-test/gpl-1_4.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/provides-version-missing.json
perl-5.22.1/cpan/CPAN-Meta/t/data-test/resources.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/restricted-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-test/restrictive-1_4.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/unicode.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/version-not-normal.json
perl-5.22.1/cpan/CPAN-Meta/t/data-test/version-ranges-1_4.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-test/version-ranges-2.json
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/1122575719-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/1206545041-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/1985684504-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/476602558-META.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/META-1_0.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/META-1_1.yml
perl-5.22.1/cpan/CPAN-Meta/t/data-valid/scalar-meta-spec.yml
perl-5.22.1/cpan/CPAN-Meta/t/load-bad.t
perl-5.22.1/cpan/CPAN-Meta/t/merge.t
perl-5.22.1/cpan/CPAN-Meta/t/meta-obj.t
perl-5.22.1/cpan/CPAN-Meta/t/no-index.t
perl-5.22.1/cpan/CPAN-Meta/t/optional_feature-merge.t
perl-5.22.1/cpan/CPAN-Meta/t/prereqs-finalize.t
perl-5.22.1/cpan/CPAN-Meta/t/prereqs-merge.t
perl-5.22.1/cpan/CPAN-Meta/t/prereqs.t
perl-5.22.1/cpan/CPAN-Meta/t/repository.t
perl-5.22.1/cpan/CPAN-Meta/t/save-load.t
perl-5.22.1/cpan/CPAN-Meta/t/validator.t
perl-5.22.1/cpan/CPAN/PAUSE2003.pub
perl-5.22.1/cpan/CPAN/PAUSE2005.pub
perl-5.22.1/cpan/CPAN/PAUSE2007.pub
perl-5.22.1/cpan/CPAN/PAUSE2009.pub
perl-5.22.1/cpan/CPAN/PAUSE2011.pub
perl-5.22.1/cpan/CPAN/lib/
perl-5.22.1/cpan/CPAN/lib/App/
perl-5.22.1/cpan/CPAN/lib/App/Cpan.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/
perl-5.22.1/cpan/CPAN/lib/CPAN.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/API/
perl-5.22.1/cpan/CPAN/lib/CPAN/API/HOWTO.pod
perl-5.22.1/cpan/CPAN/lib/CPAN/Author.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Bundle.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/CacheMgr.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Complete.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Debug.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/DeferredCode.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Distribution.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Distroprefs.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Distrostatus.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Exception/
perl-5.22.1/cpan/CPAN/lib/CPAN/Exception/RecursiveDependency.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Exception/blocked_urllist.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Exception/yaml_not_installed.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Exception/yaml_process_error.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/FTP/
perl-5.22.1/cpan/CPAN/lib/CPAN/FTP.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/FTP/netrc.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/FirstTime.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/HTTP/
perl-5.22.1/cpan/CPAN/lib/CPAN/HTTP/Client.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/HTTP/Credentials.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/HandleConfig.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Index.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/InfoObj.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Kwalify/
perl-5.22.1/cpan/CPAN/lib/CPAN/Kwalify.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Kwalify/distroprefs.dd
perl-5.22.1/cpan/CPAN/lib/CPAN/Kwalify/distroprefs.yml
perl-5.22.1/cpan/CPAN/lib/CPAN/LWP/
perl-5.22.1/cpan/CPAN/lib/CPAN/LWP/UserAgent.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Mirrors.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Module.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Nox.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Plugin/
perl-5.22.1/cpan/CPAN/lib/CPAN/Plugin.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Plugin/Specfile.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Prompt.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Queue.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Shell.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Tarzip.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/URL.pm
perl-5.22.1/cpan/CPAN/lib/CPAN/Version.pm
perl-5.22.1/cpan/CPAN/scripts/
perl-5.22.1/cpan/CPAN/scripts/cpan
perl-5.22.1/cpan/CPAN/t/
perl-5.22.1/cpan/CPAN/t/01loadme.t
perl-5.22.1/cpan/CPAN/t/02nox.t
perl-5.22.1/cpan/CPAN/t/03pkgs.t
perl-5.22.1/cpan/CPAN/t/10version.t
perl-5.22.1/cpan/CPAN/t/11mirroredby.t
perl-5.22.1/cpan/Compress-Raw-Bzip2/
perl-5.22.1/cpan/Compress-Raw-Bzip2/Bzip2.xs
perl-5.22.1/cpan/Compress-Raw-Bzip2/Makefile.PL
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/LICENSE
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/bzlib.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/bzlib.h
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/bzlib_private.h
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/compress.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/crctable.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/decompress.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/huffman.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/bzip2-src/randtable.c
perl-5.22.1/cpan/Compress-Raw-Bzip2/fallback/
perl-5.22.1/cpan/Compress-Raw-Bzip2/fallback/constants.h
perl-5.22.1/cpan/Compress-Raw-Bzip2/fallback/constants.xs
perl-5.22.1/cpan/Compress-Raw-Bzip2/lib/
perl-5.22.1/cpan/Compress-Raw-Bzip2/lib/Compress/
perl-5.22.1/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/
perl-5.22.1/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
perl-5.22.1/cpan/Compress-Raw-Bzip2/private/
perl-5.22.1/cpan/Compress-Raw-Bzip2/private/MakeUtil.pm
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/000prereq.t
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/01bzip2.t
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/09limitoutput.t
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/19nonpv.t
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/99pod.t
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/compress/
perl-5.22.1/cpan/Compress-Raw-Bzip2/t/compress/CompTestUtils.pm
perl-5.22.1/cpan/Compress-Raw-Bzip2/typemap
perl-5.22.1/cpan/Compress-Raw-Zlib/
perl-5.22.1/cpan/Compress-Raw-Zlib/Makefile.PL
perl-5.22.1/cpan/Compress-Raw-Zlib/Zlib.xs
perl-5.22.1/cpan/Compress-Raw-Zlib/config.in
perl-5.22.1/cpan/Compress-Raw-Zlib/fallback/
perl-5.22.1/cpan/Compress-Raw-Zlib/fallback/constants.h
perl-5.22.1/cpan/Compress-Raw-Zlib/fallback/constants.xs
perl-5.22.1/cpan/Compress-Raw-Zlib/lib/
perl-5.22.1/cpan/Compress-Raw-Zlib/lib/Compress/
perl-5.22.1/cpan/Compress-Raw-Zlib/lib/Compress/Raw/
perl-5.22.1/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
perl-5.22.1/cpan/Compress-Raw-Zlib/private/
perl-5.22.1/cpan/Compress-Raw-Zlib/private/MakeUtil.pm
perl-5.22.1/cpan/Compress-Raw-Zlib/t/
perl-5.22.1/cpan/Compress-Raw-Zlib/t/01version.t
perl-5.22.1/cpan/Compress-Raw-Zlib/t/02zlib.t
perl-5.22.1/cpan/Compress-Raw-Zlib/t/07bufsize.t
perl-5.22.1/cpan/Compress-Raw-Zlib/t/09limitoutput.t
perl-5.22.1/cpan/Compress-Raw-Zlib/t/18lvalue.t
perl-5.22.1/cpan/Compress-Raw-Zlib/t/19nonpv.t
perl-5.22.1/cpan/Compress-Raw-Zlib/t/compress/
perl-5.22.1/cpan/Compress-Raw-Zlib/t/compress/CompTestUtils.pm
perl-5.22.1/cpan/Compress-Raw-Zlib/typemap
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/adler32.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/compress.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/crc32.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/crc32.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/deflate.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/deflate.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/infback.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inffast.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inffast.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inffixed.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inflate.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inflate.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inftrees.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/inftrees.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/trees.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/trees.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/uncompr.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/zconf.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/zlib.h
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/zutil.c
perl-5.22.1/cpan/Compress-Raw-Zlib/zlib-src/zutil.h
perl-5.22.1/cpan/Config-Perl-V/
perl-5.22.1/cpan/Config-Perl-V/V.pm
perl-5.22.1/cpan/Config-Perl-V/t/
perl-5.22.1/cpan/Config-Perl-V/t/10_base.t
perl-5.22.1/cpan/Config-Perl-V/t/20_plv56.t
perl-5.22.1/cpan/Config-Perl-V/t/21_plv58.t
perl-5.22.1/cpan/Config-Perl-V/t/22_plv510.t
perl-5.22.1/cpan/Config-Perl-V/t/23_plv512.t
perl-5.22.1/cpan/Config-Perl-V/t/24_plv514.t
perl-5.22.1/cpan/Config-Perl-V/t/25_plv516.t
perl-5.22.1/cpan/Config-Perl-V/t/25_plv5162.t
perl-5.22.1/cpan/Config-Perl-V/t/26_plv518.t
perl-5.22.1/cpan/Config-Perl-V/t/26_plv5182.t
perl-5.22.1/cpan/Config-Perl-V/t/27_plv5200.t
perl-5.22.1/cpan/DB_File/
perl-5.22.1/cpan/DB_File/DB_File.pm
perl-5.22.1/cpan/DB_File/DB_File.xs
perl-5.22.1/cpan/DB_File/DB_File_BS
perl-5.22.1/cpan/DB_File/Makefile.PL
perl-5.22.1/cpan/DB_File/config.in
perl-5.22.1/cpan/DB_File/dbinfo
perl-5.22.1/cpan/DB_File/hints/
perl-5.22.1/cpan/DB_File/hints/dynixptx.pl
perl-5.22.1/cpan/DB_File/hints/sco.pl
perl-5.22.1/cpan/DB_File/t/
perl-5.22.1/cpan/DB_File/t/db-btree.t
perl-5.22.1/cpan/DB_File/t/db-hash.t
perl-5.22.1/cpan/DB_File/t/db-recno.t
perl-5.22.1/cpan/DB_File/typemap
perl-5.22.1/cpan/DB_File/version.c
perl-5.22.1/cpan/Devel-PPPort/
perl-5.22.1/cpan/Devel-PPPort/HACKERS
perl-5.22.1/cpan/Devel-PPPort/Makefile.PL
perl-5.22.1/cpan/Devel-PPPort/PPPort.xs
perl-5.22.1/cpan/Devel-PPPort/PPPort_pm.PL
perl-5.22.1/cpan/Devel-PPPort/PPPort_xs.PL
perl-5.22.1/cpan/Devel-PPPort/apicheck_c.PL
perl-5.22.1/cpan/Devel-PPPort/devel/
perl-5.22.1/cpan/Devel-PPPort/devel/buildperl.pl
perl-5.22.1/cpan/Devel-PPPort/devel/devtools.pl
perl-5.22.1/cpan/Devel-PPPort/devel/mkapidoc.sh
perl-5.22.1/cpan/Devel-PPPort/devel/mktodo
perl-5.22.1/cpan/Devel-PPPort/devel/mktodo.pl
perl-5.22.1/cpan/Devel-PPPort/devel/regenerate
perl-5.22.1/cpan/Devel-PPPort/devel/scanprov
perl-5.22.1/cpan/Devel-PPPort/mktests.PL
perl-5.22.1/cpan/Devel-PPPort/module2.c
perl-5.22.1/cpan/Devel-PPPort/module3.c
perl-5.22.1/cpan/Devel-PPPort/parts/
perl-5.22.1/cpan/Devel-PPPort/parts/apicheck.pl
perl-5.22.1/cpan/Devel-PPPort/parts/apidoc.fnc
perl-5.22.1/cpan/Devel-PPPort/parts/base/
perl-5.22.1/cpan/Devel-PPPort/parts/base/5003070
perl-5.22.1/cpan/Devel-PPPort/parts/base/5004000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5004010
perl-5.22.1/cpan/Devel-PPPort/parts/base/5004020
perl-5.22.1/cpan/Devel-PPPort/parts/base/5004030
perl-5.22.1/cpan/Devel-PPPort/parts/base/5004040
perl-5.22.1/cpan/Devel-PPPort/parts/base/5004050
perl-5.22.1/cpan/Devel-PPPort/parts/base/5005000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5005010
perl-5.22.1/cpan/Devel-PPPort/parts/base/5005020
perl-5.22.1/cpan/Devel-PPPort/parts/base/5005030
perl-5.22.1/cpan/Devel-PPPort/parts/base/5005040
perl-5.22.1/cpan/Devel-PPPort/parts/base/5006000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5006001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5006002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5007000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5007001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5007002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5007003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008006
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008007
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008008
perl-5.22.1/cpan/Devel-PPPort/parts/base/5008009
perl-5.22.1/cpan/Devel-PPPort/parts/base/5009000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5009001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5009002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5009003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5009004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5009005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5010000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5010001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5011000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5011001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5011002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5011003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5011004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5011005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5012000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5012001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5012002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5012003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5012004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5012005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013006
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013007
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013008
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013009
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013010
perl-5.22.1/cpan/Devel-PPPort/parts/base/5013011
perl-5.22.1/cpan/Devel-PPPort/parts/base/5014000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5014001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5014002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5014003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5014004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015006
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015007
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015008
perl-5.22.1/cpan/Devel-PPPort/parts/base/5015009
perl-5.22.1/cpan/Devel-PPPort/parts/base/5016000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5016001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5016002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5016003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017006
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017007
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017008
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017009
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017010
perl-5.22.1/cpan/Devel-PPPort/parts/base/5017011
perl-5.22.1/cpan/Devel-PPPort/parts/base/5018000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5018001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5018002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5018003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5018004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019003
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019006
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019007
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019008
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019009
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019010
perl-5.22.1/cpan/Devel-PPPort/parts/base/5019011
perl-5.22.1/cpan/Devel-PPPort/parts/base/5020000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5020001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021000
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021001
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021002
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021004
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021005
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021006
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021007
perl-5.22.1/cpan/Devel-PPPort/parts/base/5021008
perl-5.22.1/cpan/Devel-PPPort/parts/embed.fnc
perl-5.22.1/cpan/Devel-PPPort/parts/inc/
perl-5.22.1/cpan/Devel-PPPort/parts/inc/HvNAME
perl-5.22.1/cpan/Devel-PPPort/parts/inc/MY_CXT
perl-5.22.1/cpan/Devel-PPPort/parts/inc/SvPV
perl-5.22.1/cpan/Devel-PPPort/parts/inc/SvREFCNT
perl-5.22.1/cpan/Devel-PPPort/parts/inc/Sv_set
perl-5.22.1/cpan/Devel-PPPort/parts/inc/call
perl-5.22.1/cpan/Devel-PPPort/parts/inc/cop
perl-5.22.1/cpan/Devel-PPPort/parts/inc/exception
perl-5.22.1/cpan/Devel-PPPort/parts/inc/format
perl-5.22.1/cpan/Devel-PPPort/parts/inc/grok
perl-5.22.1/cpan/Devel-PPPort/parts/inc/gv
perl-5.22.1/cpan/Devel-PPPort/parts/inc/limits
perl-5.22.1/cpan/Devel-PPPort/parts/inc/mPUSH
perl-5.22.1/cpan/Devel-PPPort/parts/inc/magic
perl-5.22.1/cpan/Devel-PPPort/parts/inc/memory
perl-5.22.1/cpan/Devel-PPPort/parts/inc/misc
perl-5.22.1/cpan/Devel-PPPort/parts/inc/newCONSTSUB
perl-5.22.1/cpan/Devel-PPPort/parts/inc/newRV
perl-5.22.1/cpan/Devel-PPPort/parts/inc/newSV_type
perl-5.22.1/cpan/Devel-PPPort/parts/inc/newSVpv
perl-5.22.1/cpan/Devel-PPPort/parts/inc/podtest
perl-5.22.1/cpan/Devel-PPPort/parts/inc/ppphbin
perl-5.22.1/cpan/Devel-PPPort/parts/inc/ppphdoc
perl-5.22.1/cpan/Devel-PPPort/parts/inc/ppphtest
perl-5.22.1/cpan/Devel-PPPort/parts/inc/pv_tools
perl-5.22.1/cpan/Devel-PPPort/parts/inc/pvs
perl-5.22.1/cpan/Devel-PPPort/parts/inc/shared_pv
perl-5.22.1/cpan/Devel-PPPort/parts/inc/snprintf
perl-5.22.1/cpan/Devel-PPPort/parts/inc/sprintf
perl-5.22.1/cpan/Devel-PPPort/parts/inc/strlfuncs
perl-5.22.1/cpan/Devel-PPPort/parts/inc/sv_xpvf
perl-5.22.1/cpan/Devel-PPPort/parts/inc/threads
perl-5.22.1/cpan/Devel-PPPort/parts/inc/uv
perl-5.22.1/cpan/Devel-PPPort/parts/inc/variables
perl-5.22.1/cpan/Devel-PPPort/parts/inc/version
perl-5.22.1/cpan/Devel-PPPort/parts/inc/warn
perl-5.22.1/cpan/Devel-PPPort/parts/ppport.fnc
perl-5.22.1/cpan/Devel-PPPort/parts/ppptools.pl
perl-5.22.1/cpan/Devel-PPPort/parts/todo/
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5003070
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5004000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5004010
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5004020
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5004030
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5004040
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5004050
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5005000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5005010
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5005020
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5005030
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5005040
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5006000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5006001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5006002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5007000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5007001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5007002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5007003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008006
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008007
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008008
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5008009
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5009000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5009001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5009002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5009003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5009004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5009005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5010000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5010001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5011000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5011001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5011002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5011003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5011004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5011005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5012000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5012001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5012002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5012003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5012004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5012005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013006
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013007
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013008
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013009
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013010
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5013011
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5014000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5014001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5014002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5014003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5014004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015006
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015007
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015008
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5015009
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5016000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5016001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5016002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5016003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017006
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017007
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017008
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017009
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017010
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5017011
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5018000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5018001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5018002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5018003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5018004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019003
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019006
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019007
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019008
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019009
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019010
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5019011
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5020000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5020001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021000
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021001
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021002
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021004
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021005
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021006
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021007
perl-5.22.1/cpan/Devel-PPPort/parts/todo/5021008
perl-5.22.1/cpan/Devel-PPPort/ppport_h.PL
perl-5.22.1/cpan/Devel-PPPort/soak
perl-5.22.1/cpan/Devel-PPPort/t/
perl-5.22.1/cpan/Devel-PPPort/t/HvNAME.t
perl-5.22.1/cpan/Devel-PPPort/t/MY_CXT.t
perl-5.22.1/cpan/Devel-PPPort/t/SvPV.t
perl-5.22.1/cpan/Devel-PPPort/t/SvREFCNT.t
perl-5.22.1/cpan/Devel-PPPort/t/Sv_set.t
perl-5.22.1/cpan/Devel-PPPort/t/call.t
perl-5.22.1/cpan/Devel-PPPort/t/cop.t
perl-5.22.1/cpan/Devel-PPPort/t/exception.t
perl-5.22.1/cpan/Devel-PPPort/t/format.t
perl-5.22.1/cpan/Devel-PPPort/t/grok.t
perl-5.22.1/cpan/Devel-PPPort/t/gv.t
perl-5.22.1/cpan/Devel-PPPort/t/limits.t
perl-5.22.1/cpan/Devel-PPPort/t/mPUSH.t
perl-5.22.1/cpan/Devel-PPPort/t/magic.t
perl-5.22.1/cpan/Devel-PPPort/t/memory.t
perl-5.22.1/cpan/Devel-PPPort/t/misc.t
perl-5.22.1/cpan/Devel-PPPort/t/newCONSTSUB.t
perl-5.22.1/cpan/Devel-PPPort/t/newRV.t
perl-5.22.1/cpan/Devel-PPPort/t/newSV_type.t
perl-5.22.1/cpan/Devel-PPPort/t/newSVpv.t
perl-5.22.1/cpan/Devel-PPPort/t/podtest.t
perl-5.22.1/cpan/Devel-PPPort/t/ppphtest.t
perl-5.22.1/cpan/Devel-PPPort/t/pv_tools.t
perl-5.22.1/cpan/Devel-PPPort/t/pvs.t
perl-5.22.1/cpan/Devel-PPPort/t/shared_pv.t
perl-5.22.1/cpan/Devel-PPPort/t/snprintf.t
perl-5.22.1/cpan/Devel-PPPort/t/sprintf.t
perl-5.22.1/cpan/Devel-PPPort/t/strlfuncs.t
perl-5.22.1/cpan/Devel-PPPort/t/sv_xpvf.t
perl-5.22.1/cpan/Devel-PPPort/t/testutil.pl
perl-5.22.1/cpan/Devel-PPPort/t/threads.t
perl-5.22.1/cpan/Devel-PPPort/t/uv.t
perl-5.22.1/cpan/Devel-PPPort/t/variables.t
perl-5.22.1/cpan/Devel-PPPort/t/warn.t
perl-5.22.1/cpan/Devel-PPPort/typemap
perl-5.22.1/cpan/Digest/
perl-5.22.1/cpan/Digest-MD5/
perl-5.22.1/cpan/Digest-MD5/MD5.pm
perl-5.22.1/cpan/Digest-MD5/MD5.xs
perl-5.22.1/cpan/Digest-MD5/Makefile.PL
perl-5.22.1/cpan/Digest-MD5/hints/
perl-5.22.1/cpan/Digest-MD5/hints/MacOS.pl
perl-5.22.1/cpan/Digest-MD5/hints/dec_osf.pl
perl-5.22.1/cpan/Digest-MD5/hints/irix_6.pl
perl-5.22.1/cpan/Digest-MD5/t/
perl-5.22.1/cpan/Digest-MD5/t/align.t
perl-5.22.1/cpan/Digest-MD5/t/badfile.t
perl-5.22.1/cpan/Digest-MD5/t/bits.t
perl-5.22.1/cpan/Digest-MD5/t/clone.t
perl-5.22.1/cpan/Digest-MD5/t/files.t
perl-5.22.1/cpan/Digest-MD5/t/md5-aaa.t
perl-5.22.1/cpan/Digest-MD5/t/threads.t
perl-5.22.1/cpan/Digest-MD5/t/utf8.t
perl-5.22.1/cpan/Digest-MD5/typemap
perl-5.22.1/cpan/Digest-SHA/
perl-5.22.1/cpan/Digest-SHA/Makefile.PL
perl-5.22.1/cpan/Digest-SHA/SHA.xs
perl-5.22.1/cpan/Digest-SHA/lib/
perl-5.22.1/cpan/Digest-SHA/lib/Digest/
perl-5.22.1/cpan/Digest-SHA/lib/Digest/SHA.pm
perl-5.22.1/cpan/Digest-SHA/shasum
perl-5.22.1/cpan/Digest-SHA/src/
perl-5.22.1/cpan/Digest-SHA/src/sdf.c
perl-5.22.1/cpan/Digest-SHA/src/sha.c
perl-5.22.1/cpan/Digest-SHA/src/sha.h
perl-5.22.1/cpan/Digest-SHA/src/sha64bit.c
perl-5.22.1/cpan/Digest-SHA/src/sha64bit.h
perl-5.22.1/cpan/Digest-SHA/t/
perl-5.22.1/cpan/Digest-SHA/t/allfcns.t
perl-5.22.1/cpan/Digest-SHA/t/base64.t
perl-5.22.1/cpan/Digest-SHA/t/bitbuf.t
perl-5.22.1/cpan/Digest-SHA/t/bitorder.t
perl-5.22.1/cpan/Digest-SHA/t/fips180-4.t
perl-5.22.1/cpan/Digest-SHA/t/fips198.t
perl-5.22.1/cpan/Digest-SHA/t/gg.t
perl-5.22.1/cpan/Digest-SHA/t/gglong.t
perl-5.22.1/cpan/Digest-SHA/t/hmacsha.t
perl-5.22.1/cpan/Digest-SHA/t/inheritance.t
perl-5.22.1/cpan/Digest-SHA/t/ireland.t
perl-5.22.1/cpan/Digest-SHA/t/methods.t
perl-5.22.1/cpan/Digest-SHA/t/nistbit.t
perl-5.22.1/cpan/Digest-SHA/t/nistbyte.t
perl-5.22.1/cpan/Digest-SHA/t/rfc2202.t
perl-5.22.1/cpan/Digest-SHA/t/sha1.t
perl-5.22.1/cpan/Digest-SHA/t/sha224.t
perl-5.22.1/cpan/Digest-SHA/t/sha256.t
perl-5.22.1/cpan/Digest-SHA/t/sha384.t
perl-5.22.1/cpan/Digest-SHA/t/sha512.t
perl-5.22.1/cpan/Digest-SHA/t/state.t
perl-5.22.1/cpan/Digest-SHA/t/unicode.t
perl-5.22.1/cpan/Digest-SHA/t/woodbury.t
perl-5.22.1/cpan/Digest-SHA/typemap
perl-5.22.1/cpan/Digest/Digest/
perl-5.22.1/cpan/Digest/Digest.pm
perl-5.22.1/cpan/Digest/Digest/base.pm
perl-5.22.1/cpan/Digest/Digest/file.pm
perl-5.22.1/cpan/Digest/t/
perl-5.22.1/cpan/Digest/t/base.t
perl-5.22.1/cpan/Digest/t/digest.t
perl-5.22.1/cpan/Digest/t/file.t
perl-5.22.1/cpan/Digest/t/lib/
perl-5.22.1/cpan/Digest/t/lib/Digest/
perl-5.22.1/cpan/Digest/t/lib/Digest/Dummy.pm
perl-5.22.1/cpan/Digest/t/security.t
perl-5.22.1/cpan/Encode/
perl-5.22.1/cpan/Encode/Byte/
perl-5.22.1/cpan/Encode/Byte/Byte.pm
perl-5.22.1/cpan/Encode/Byte/Makefile.PL
perl-5.22.1/cpan/Encode/CN/
perl-5.22.1/cpan/Encode/CN/CN.pm
perl-5.22.1/cpan/Encode/CN/Makefile.PL
perl-5.22.1/cpan/Encode/EBCDIC/
perl-5.22.1/cpan/Encode/EBCDIC/EBCDIC.pm
perl-5.22.1/cpan/Encode/EBCDIC/Makefile.PL
perl-5.22.1/cpan/Encode/Encode/
perl-5.22.1/cpan/Encode/Encode.pm
perl-5.22.1/cpan/Encode/Encode.xs
perl-5.22.1/cpan/Encode/Encode/Changes.e2x
perl-5.22.1/cpan/Encode/Encode/ConfigLocal_PM.e2x
perl-5.22.1/cpan/Encode/Encode/Makefile_PL.e2x
perl-5.22.1/cpan/Encode/Encode/README.e2x
perl-5.22.1/cpan/Encode/Encode/_PM.e2x
perl-5.22.1/cpan/Encode/Encode/_T.e2x
perl-5.22.1/cpan/Encode/Encode/encode.h
perl-5.22.1/cpan/Encode/JP/
perl-5.22.1/cpan/Encode/JP/JP.pm
perl-5.22.1/cpan/Encode/JP/Makefile.PL
perl-5.22.1/cpan/Encode/KR/
perl-5.22.1/cpan/Encode/KR/KR.pm
perl-5.22.1/cpan/Encode/KR/Makefile.PL
perl-5.22.1/cpan/Encode/Makefile.PL
perl-5.22.1/cpan/Encode/Symbol/
perl-5.22.1/cpan/Encode/Symbol/Makefile.PL
perl-5.22.1/cpan/Encode/Symbol/Symbol.pm
perl-5.22.1/cpan/Encode/TW/
perl-5.22.1/cpan/Encode/TW/Makefile.PL
perl-5.22.1/cpan/Encode/TW/TW.pm
perl-5.22.1/cpan/Encode/Unicode/
perl-5.22.1/cpan/Encode/Unicode/Makefile.PL
perl-5.22.1/cpan/Encode/Unicode/Unicode.pm
perl-5.22.1/cpan/Encode/Unicode/Unicode.xs
perl-5.22.1/cpan/Encode/bin/
perl-5.22.1/cpan/Encode/bin/enc2xs
perl-5.22.1/cpan/Encode/bin/encguess
perl-5.22.1/cpan/Encode/bin/piconv
perl-5.22.1/cpan/Encode/bin/ucm2table
perl-5.22.1/cpan/Encode/bin/ucmlint
perl-5.22.1/cpan/Encode/bin/ucmsort
perl-5.22.1/cpan/Encode/bin/unidump
perl-5.22.1/cpan/Encode/encengine.c
perl-5.22.1/cpan/Encode/encoding.pm
perl-5.22.1/cpan/Encode/lib/
perl-5.22.1/cpan/Encode/lib/Encode/
perl-5.22.1/cpan/Encode/lib/Encode/Alias.pm
perl-5.22.1/cpan/Encode/lib/Encode/CJKConstants.pm
perl-5.22.1/cpan/Encode/lib/Encode/CN/
perl-5.22.1/cpan/Encode/lib/Encode/CN/HZ.pm
perl-5.22.1/cpan/Encode/lib/Encode/Config.pm
perl-5.22.1/cpan/Encode/lib/Encode/Encoder.pm
perl-5.22.1/cpan/Encode/lib/Encode/Encoding.pm
perl-5.22.1/cpan/Encode/lib/Encode/GSM0338.pm
perl-5.22.1/cpan/Encode/lib/Encode/Guess.pm
perl-5.22.1/cpan/Encode/lib/Encode/JP/
perl-5.22.1/cpan/Encode/lib/Encode/JP/H2Z.pm
perl-5.22.1/cpan/Encode/lib/Encode/JP/JIS7.pm
perl-5.22.1/cpan/Encode/lib/Encode/KR/
perl-5.22.1/cpan/Encode/lib/Encode/KR/2022_KR.pm
perl-5.22.1/cpan/Encode/lib/Encode/MIME/
perl-5.22.1/cpan/Encode/lib/Encode/MIME/Header/
perl-5.22.1/cpan/Encode/lib/Encode/MIME/Header.pm
perl-5.22.1/cpan/Encode/lib/Encode/MIME/Header/ISO_2022_JP.pm
perl-5.22.1/cpan/Encode/lib/Encode/MIME/Name.pm
perl-5.22.1/cpan/Encode/lib/Encode/PerlIO.pod
perl-5.22.1/cpan/Encode/lib/Encode/Supported.pod
perl-5.22.1/cpan/Encode/lib/Encode/Unicode/
perl-5.22.1/cpan/Encode/lib/Encode/Unicode/UTF7.pm
perl-5.22.1/cpan/Encode/t/
perl-5.22.1/cpan/Encode/t/Aliases.t
perl-5.22.1/cpan/Encode/t/CJKT.t
perl-5.22.1/cpan/Encode/t/Encode.t
perl-5.22.1/cpan/Encode/t/Encoder.t
perl-5.22.1/cpan/Encode/t/Mod_EUCJP.pm
perl-5.22.1/cpan/Encode/t/Unicode.t
perl-5.22.1/cpan/Encode/t/at-cn.t
perl-5.22.1/cpan/Encode/t/at-tw.t
perl-5.22.1/cpan/Encode/t/big5-eten.enc
perl-5.22.1/cpan/Encode/t/big5-eten.utf
perl-5.22.1/cpan/Encode/t/big5-hkscs.enc
perl-5.22.1/cpan/Encode/t/big5-hkscs.utf
perl-5.22.1/cpan/Encode/t/cow.t
perl-5.22.1/cpan/Encode/t/decode.t
perl-5.22.1/cpan/Encode/t/enc_data.t
perl-5.22.1/cpan/Encode/t/enc_eucjp.t
perl-5.22.1/cpan/Encode/t/enc_module.enc
perl-5.22.1/cpan/Encode/t/enc_module.t
perl-5.22.1/cpan/Encode/t/enc_utf8.t
perl-5.22.1/cpan/Encode/t/encoding.t
perl-5.22.1/cpan/Encode/t/fallback.t
perl-5.22.1/cpan/Encode/t/from_to.t
perl-5.22.1/cpan/Encode/t/gb2312.enc
perl-5.22.1/cpan/Encode/t/gb2312.utf
perl-5.22.1/cpan/Encode/t/grow.t
perl-5.22.1/cpan/Encode/t/gsm0338.t
perl-5.22.1/cpan/Encode/t/guess.t
perl-5.22.1/cpan/Encode/t/jis7-fallback.t
perl-5.22.1/cpan/Encode/t/jisx0201.enc
perl-5.22.1/cpan/Encode/t/jisx0201.utf
perl-5.22.1/cpan/Encode/t/jisx0208.enc
perl-5.22.1/cpan/Encode/t/jisx0208.utf
perl-5.22.1/cpan/Encode/t/jisx0212.enc
perl-5.22.1/cpan/Encode/t/jisx0212.utf
perl-5.22.1/cpan/Encode/t/jperl.t
perl-5.22.1/cpan/Encode/t/ksc5601.enc
perl-5.22.1/cpan/Encode/t/ksc5601.utf
perl-5.22.1/cpan/Encode/t/mime-header.t
perl-5.22.1/cpan/Encode/t/mime-name.t
perl-5.22.1/cpan/Encode/t/mime_header_iso2022jp.t
perl-5.22.1/cpan/Encode/t/perlio.t
perl-5.22.1/cpan/Encode/t/piconv.t
perl-5.22.1/cpan/Encode/t/rt.pl
perl-5.22.1/cpan/Encode/t/taint.t
perl-5.22.1/cpan/Encode/t/unibench.pl
perl-5.22.1/cpan/Encode/t/utf8ref.t
perl-5.22.1/cpan/Encode/t/utf8strict.t
perl-5.22.1/cpan/Encode/t/utf8warnings.t
perl-5.22.1/cpan/Encode/ucm/
perl-5.22.1/cpan/Encode/ucm/8859-1.ucm
perl-5.22.1/cpan/Encode/ucm/8859-10.ucm
perl-5.22.1/cpan/Encode/ucm/8859-11.ucm
perl-5.22.1/cpan/Encode/ucm/8859-13.ucm
perl-5.22.1/cpan/Encode/ucm/8859-14.ucm
perl-5.22.1/cpan/Encode/ucm/8859-15.ucm
perl-5.22.1/cpan/Encode/ucm/8859-16.ucm
perl-5.22.1/cpan/Encode/ucm/8859-2.ucm
perl-5.22.1/cpan/Encode/ucm/8859-3.ucm
perl-5.22.1/cpan/Encode/ucm/8859-4.ucm
perl-5.22.1/cpan/Encode/ucm/8859-5.ucm
perl-5.22.1/cpan/Encode/ucm/8859-6.ucm
perl-5.22.1/cpan/Encode/ucm/8859-7.ucm
perl-5.22.1/cpan/Encode/ucm/8859-8.ucm
perl-5.22.1/cpan/Encode/ucm/8859-9.ucm
perl-5.22.1/cpan/Encode/ucm/adobeStdenc.ucm
perl-5.22.1/cpan/Encode/ucm/adobeSymbol.ucm
perl-5.22.1/cpan/Encode/ucm/adobeZdingbat.ucm
perl-5.22.1/cpan/Encode/ucm/ascii.ucm
perl-5.22.1/cpan/Encode/ucm/big5-eten.ucm
perl-5.22.1/cpan/Encode/ucm/big5-hkscs.ucm
perl-5.22.1/cpan/Encode/ucm/cp037.ucm
perl-5.22.1/cpan/Encode/ucm/cp1006.ucm
perl-5.22.1/cpan/Encode/ucm/cp1026.ucm
perl-5.22.1/cpan/Encode/ucm/cp1047.ucm
perl-5.22.1/cpan/Encode/ucm/cp1250.ucm
perl-5.22.1/cpan/Encode/ucm/cp1251.ucm
perl-5.22.1/cpan/Encode/ucm/cp1252.ucm
perl-5.22.1/cpan/Encode/ucm/cp1253.ucm
perl-5.22.1/cpan/Encode/ucm/cp1254.ucm
perl-5.22.1/cpan/Encode/ucm/cp1255.ucm
perl-5.22.1/cpan/Encode/ucm/cp1256.ucm
perl-5.22.1/cpan/Encode/ucm/cp1257.ucm
perl-5.22.1/cpan/Encode/ucm/cp1258.ucm
perl-5.22.1/cpan/Encode/ucm/cp424.ucm
perl-5.22.1/cpan/Encode/ucm/cp437.ucm
perl-5.22.1/cpan/Encode/ucm/cp500.ucm
perl-5.22.1/cpan/Encode/ucm/cp737.ucm
perl-5.22.1/cpan/Encode/ucm/cp775.ucm
perl-5.22.1/cpan/Encode/ucm/cp850.ucm
perl-5.22.1/cpan/Encode/ucm/cp852.ucm
perl-5.22.1/cpan/Encode/ucm/cp855.ucm
perl-5.22.1/cpan/Encode/ucm/cp856.ucm
perl-5.22.1/cpan/Encode/ucm/cp857.ucm
perl-5.22.1/cpan/Encode/ucm/cp858.ucm
perl-5.22.1/cpan/Encode/ucm/cp860.ucm
perl-5.22.1/cpan/Encode/ucm/cp861.ucm
perl-5.22.1/cpan/Encode/ucm/cp862.ucm
perl-5.22.1/cpan/Encode/ucm/cp863.ucm
perl-5.22.1/cpan/Encode/ucm/cp864.ucm
perl-5.22.1/cpan/Encode/ucm/cp865.ucm
perl-5.22.1/cpan/Encode/ucm/cp866.ucm
perl-5.22.1/cpan/Encode/ucm/cp869.ucm
perl-5.22.1/cpan/Encode/ucm/cp874.ucm
perl-5.22.1/cpan/Encode/ucm/cp875.ucm
perl-5.22.1/cpan/Encode/ucm/cp932.ucm
perl-5.22.1/cpan/Encode/ucm/cp936.ucm
perl-5.22.1/cpan/Encode/ucm/cp949.ucm
perl-5.22.1/cpan/Encode/ucm/cp950.ucm
perl-5.22.1/cpan/Encode/ucm/ctrl.ucm
perl-5.22.1/cpan/Encode/ucm/dingbats.ucm
perl-5.22.1/cpan/Encode/ucm/euc-cn.ucm
perl-5.22.1/cpan/Encode/ucm/euc-jp.ucm
perl-5.22.1/cpan/Encode/ucm/euc-kr.ucm
perl-5.22.1/cpan/Encode/ucm/gb12345.ucm
perl-5.22.1/cpan/Encode/ucm/gb2312.ucm
perl-5.22.1/cpan/Encode/ucm/hp-roman8.ucm
perl-5.22.1/cpan/Encode/ucm/ir-165.ucm
perl-5.22.1/cpan/Encode/ucm/jis0201.ucm
perl-5.22.1/cpan/Encode/ucm/jis0208.ucm
perl-5.22.1/cpan/Encode/ucm/jis0212.ucm
perl-5.22.1/cpan/Encode/ucm/johab.ucm
perl-5.22.1/cpan/Encode/ucm/koi8-f.ucm
perl-5.22.1/cpan/Encode/ucm/koi8-r.ucm
perl-5.22.1/cpan/Encode/ucm/koi8-u.ucm
perl-5.22.1/cpan/Encode/ucm/ksc5601.ucm
perl-5.22.1/cpan/Encode/ucm/macArabic.ucm
perl-5.22.1/cpan/Encode/ucm/macCentEuro.ucm
perl-5.22.1/cpan/Encode/ucm/macChinsimp.ucm
perl-5.22.1/cpan/Encode/ucm/macChintrad.ucm
perl-5.22.1/cpan/Encode/ucm/macCroatian.ucm
perl-5.22.1/cpan/Encode/ucm/macCyrillic.ucm
perl-5.22.1/cpan/Encode/ucm/macDingbats.ucm
perl-5.22.1/cpan/Encode/ucm/macFarsi.ucm
perl-5.22.1/cpan/Encode/ucm/macGreek.ucm
perl-5.22.1/cpan/Encode/ucm/macHebrew.ucm
perl-5.22.1/cpan/Encode/ucm/macIceland.ucm
perl-5.22.1/cpan/Encode/ucm/macJapanese.ucm
perl-5.22.1/cpan/Encode/ucm/macKorean.ucm
perl-5.22.1/cpan/Encode/ucm/macROMnn.ucm
perl-5.22.1/cpan/Encode/ucm/macRUMnn.ucm
perl-5.22.1/cpan/Encode/ucm/macRoman.ucm
perl-5.22.1/cpan/Encode/ucm/macSami.ucm
perl-5.22.1/cpan/Encode/ucm/macSymbol.ucm
perl-5.22.1/cpan/Encode/ucm/macThai.ucm
perl-5.22.1/cpan/Encode/ucm/macTurkish.ucm
perl-5.22.1/cpan/Encode/ucm/macUkraine.ucm
perl-5.22.1/cpan/Encode/ucm/nextstep.ucm
perl-5.22.1/cpan/Encode/ucm/null.ucm
perl-5.22.1/cpan/Encode/ucm/posix-bc.ucm
perl-5.22.1/cpan/Encode/ucm/shiftjis.ucm
perl-5.22.1/cpan/Encode/ucm/symbol.ucm
perl-5.22.1/cpan/Encode/ucm/viscii.ucm
perl-5.22.1/cpan/ExtUtils-Command/
perl-5.22.1/cpan/ExtUtils-Command/lib/
perl-5.22.1/cpan/ExtUtils-Command/lib/ExtUtils/
perl-5.22.1/cpan/ExtUtils-Command/lib/ExtUtils/Command.pm
perl-5.22.1/cpan/ExtUtils-Command/t/
perl-5.22.1/cpan/ExtUtils-Command/t/cp.t
perl-5.22.1/cpan/ExtUtils-Command/t/eu_command.t
perl-5.22.1/cpan/ExtUtils-Command/t/lib/
perl-5.22.1/cpan/ExtUtils-Command/t/lib/TieOut.pm
perl-5.22.1/cpan/ExtUtils-Constant/
perl-5.22.1/cpan/ExtUtils-Constant/lib/
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/Constant.pm
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm
perl-5.22.1/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
perl-5.22.1/cpan/ExtUtils-Constant/t/
perl-5.22.1/cpan/ExtUtils-Constant/t/Constant.t
perl-5.22.1/cpan/ExtUtils-Install/
perl-5.22.1/cpan/ExtUtils-Install/lib/
perl-5.22.1/cpan/ExtUtils-Install/lib/ExtUtils/
perl-5.22.1/cpan/ExtUtils-Install/lib/ExtUtils/Install.pm
perl-5.22.1/cpan/ExtUtils-Install/lib/ExtUtils/Installed.pm
perl-5.22.1/cpan/ExtUtils-Install/lib/ExtUtils/Packlist.pm
perl-5.22.1/cpan/ExtUtils-Install/t/
perl-5.22.1/cpan/ExtUtils-Install/t/Install.t
perl-5.22.1/cpan/ExtUtils-Install/t/InstallWithMM.t
perl-5.22.1/cpan/ExtUtils-Install/t/Installapi2.t
perl-5.22.1/cpan/ExtUtils-Install/t/Installed.t
perl-5.22.1/cpan/ExtUtils-Install/t/Packlist.t
perl-5.22.1/cpan/ExtUtils-Install/t/can_write_dir.t
perl-5.22.1/cpan/ExtUtils-Install/t/lib/
perl-5.22.1/cpan/ExtUtils-Install/t/lib/MakeMaker/
perl-5.22.1/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/
perl-5.22.1/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup/
perl-5.22.1/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup/BFD.pm
perl-5.22.1/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Utils.pm
perl-5.22.1/cpan/ExtUtils-Install/t/lib/TieOut.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/
perl-5.22.1/cpan/ExtUtils-MakeMaker/bin/
perl-5.22.1/cpan/ExtUtils-MakeMaker/bin/instmodsh
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_AIX.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_BeOS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Cygwin.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_DOS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Darwin.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_MacOS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_NW5.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_OS2.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_QNX.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_UWIN.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_VMS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_VOS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Win32.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Win95.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MY.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Config.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Tutorial.pod
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version/
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version/regex.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/version/vpp.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Mkbootstrap.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Mksymlists.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/lib/ExtUtils/testlib.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/00compile.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/01perl_bugs.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/FIRST_MAKEFILE.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/INST.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/INSTALL_BASE.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/Liblist.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/META_for_testing.json
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/META_for_testing.yml
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/META_for_testing_tricky_version.yml
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_Any.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_BeOS.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_NW5.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_OS2.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_Unix.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_VMS.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MM_Win32.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/MakeMaker_Parameters.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/Mkbootstrap.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/PL_FILES.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/VERSION_FROM.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/WriteEmptyMakefile.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/arch_check.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/backwards.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/basic.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/build_man.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/cd.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/config.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/dir_target.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/echo.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/fix_libs.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/fixin.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/hints.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/installed_file.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/is_of_type.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/NoXS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/BFD.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/MPV.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/PL_FILES.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/Problem.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/Recurs.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/SAS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/Unicode.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/XS.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Utils.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/TieIn.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/lib/TieOut.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/make.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/maketext_filter.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/meta_convert.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/metafile_data.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/metafile_file.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/min_perl_version.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/miniperl.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/oneliner.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/parse_abstract.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/parse_version.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/pm.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/pm_to_blib.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/pod2man.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/postamble.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/prefixify.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/prereq.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/prereq_print.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/problems.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/prompt.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/recurs.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/revision.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/several_authors.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/split_command.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/test_boilerplate.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testdata/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testdata/reallylongdirectoryname/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testdata/reallylongdirectoryname/arch1/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testdata/reallylongdirectoryname/arch1/Config.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testdata/reallylongdirectoryname/arch2/
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testdata/reallylongdirectoryname/arch2/Config.pm
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/testlib.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/unicode.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/vstrings.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/writemakefile_args.t
perl-5.22.1/cpan/ExtUtils-MakeMaker/t/xs.t
perl-5.22.1/cpan/ExtUtils-Manifest/
perl-5.22.1/cpan/ExtUtils-Manifest/lib/
perl-5.22.1/cpan/ExtUtils-Manifest/lib/ExtUtils/
perl-5.22.1/cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP
perl-5.22.1/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm
perl-5.22.1/cpan/ExtUtils-Manifest/t/
perl-5.22.1/cpan/ExtUtils-Manifest/t/Manifest.t
perl-5.22.1/cpan/File-Fetch/
perl-5.22.1/cpan/File-Fetch/lib/
perl-5.22.1/cpan/File-Fetch/lib/File/
perl-5.22.1/cpan/File-Fetch/lib/File/Fetch.pm
perl-5.22.1/cpan/File-Fetch/t/
perl-5.22.1/cpan/File-Fetch/t/01_File-Fetch.t
perl-5.22.1/cpan/File-Fetch/t/null_subclass.t
perl-5.22.1/cpan/File-Path/
perl-5.22.1/cpan/File-Path/lib/
perl-5.22.1/cpan/File-Path/lib/File/
perl-5.22.1/cpan/File-Path/lib/File/Path.pm
perl-5.22.1/cpan/File-Path/t/
perl-5.22.1/cpan/File-Path/t/Path.t
perl-5.22.1/cpan/File-Path/t/taint.t
perl-5.22.1/cpan/File-Temp/
perl-5.22.1/cpan/File-Temp/lib/
perl-5.22.1/cpan/File-Temp/lib/File/
perl-5.22.1/cpan/File-Temp/lib/File/Temp.pm
perl-5.22.1/cpan/File-Temp/t/
perl-5.22.1/cpan/File-Temp/t/cmp.t
perl-5.22.1/cpan/File-Temp/t/fork.t
perl-5.22.1/cpan/File-Temp/t/lock.t
perl-5.22.1/cpan/File-Temp/t/mktemp.t
perl-5.22.1/cpan/File-Temp/t/object.t
perl-5.22.1/cpan/File-Temp/t/posix.t
perl-5.22.1/cpan/File-Temp/t/rmtree.t
perl-5.22.1/cpan/File-Temp/t/security.t
perl-5.22.1/cpan/File-Temp/t/seekable.t
perl-5.22.1/cpan/File-Temp/t/tempfile.t
perl-5.22.1/cpan/Filter-Util-Call/
perl-5.22.1/cpan/Filter-Util-Call/Call.pm
perl-5.22.1/cpan/Filter-Util-Call/Call.xs
perl-5.22.1/cpan/Filter-Util-Call/filter-util.pl
perl-5.22.1/cpan/Filter-Util-Call/t/
perl-5.22.1/cpan/Filter-Util-Call/t/call.t
perl-5.22.1/cpan/Filter-Util-Call/t/rt_54452-rebless.t
perl-5.22.1/cpan/Getopt-Long/
perl-5.22.1/cpan/Getopt-Long/lib/
perl-5.22.1/cpan/Getopt-Long/lib/Getopt/
perl-5.22.1/cpan/Getopt-Long/lib/Getopt/Long.pm
perl-5.22.1/cpan/Getopt-Long/t/
perl-5.22.1/cpan/Getopt-Long/t/gol-basic.t
perl-5.22.1/cpan/Getopt-Long/t/gol-linkage.t
perl-5.22.1/cpan/Getopt-Long/t/gol-oo.t
perl-5.22.1/cpan/Getopt-Long/t/gol-xargv.t
perl-5.22.1/cpan/Getopt-Long/t/gol-xstring.t
perl-5.22.1/cpan/HTTP-Tiny/
perl-5.22.1/cpan/HTTP-Tiny/corpus/
perl-5.22.1/cpan/HTTP-Tiny/corpus/auth-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/auth-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/auth-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/auth-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/auth-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-06.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/cookies-07.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/delete-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/form-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/form-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/form-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/form-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/form-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-06.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-07.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-08.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-09.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-10.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-11.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-12.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-13.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-14.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-15.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-16.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-17.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-18.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-19.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-20.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/get-21.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/head-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/keepalive-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/keepalive-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/keepalive-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/keepalive-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/keepalive-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/mirror-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/mirror-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/mirror-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/mirror-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/mirror-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/post-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/proxy-auth-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/put-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/put-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/put-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/put-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/put-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-01.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-02.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-03.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-04.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-05.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-06.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-07.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-08.txt
perl-5.22.1/cpan/HTTP-Tiny/corpus/redirect-09.txt
perl-5.22.1/cpan/HTTP-Tiny/lib/
perl-5.22.1/cpan/HTTP-Tiny/lib/HTTP/
perl-5.22.1/cpan/HTTP-Tiny/lib/HTTP/Tiny.pm
perl-5.22.1/cpan/HTTP-Tiny/t/
perl-5.22.1/cpan/HTTP-Tiny/t/000_load.t
perl-5.22.1/cpan/HTTP-Tiny/t/001_api.t
perl-5.22.1/cpan/HTTP-Tiny/t/002_croakage.t
perl-5.22.1/cpan/HTTP-Tiny/t/003_agent.t
perl-5.22.1/cpan/HTTP-Tiny/t/010_url.t
perl-5.22.1/cpan/HTTP-Tiny/t/020_headers.t
perl-5.22.1/cpan/HTTP-Tiny/t/030_response.t
perl-5.22.1/cpan/HTTP-Tiny/t/040_content.t
perl-5.22.1/cpan/HTTP-Tiny/t/050_chunked_body.t
perl-5.22.1/cpan/HTTP-Tiny/t/060_http_date.t
perl-5.22.1/cpan/HTTP-Tiny/t/070_cookie_jar.t
perl-5.22.1/cpan/HTTP-Tiny/t/100_get.t
perl-5.22.1/cpan/HTTP-Tiny/t/101_head.t
perl-5.22.1/cpan/HTTP-Tiny/t/102_put.t
perl-5.22.1/cpan/HTTP-Tiny/t/103_delete.t
perl-5.22.1/cpan/HTTP-Tiny/t/104_post.t
perl-5.22.1/cpan/HTTP-Tiny/t/110_mirror.t
perl-5.22.1/cpan/HTTP-Tiny/t/130_redirect.t
perl-5.22.1/cpan/HTTP-Tiny/t/140_proxy.t
perl-5.22.1/cpan/HTTP-Tiny/t/141_no_proxy.t
perl-5.22.1/cpan/HTTP-Tiny/t/150_post_form.t
perl-5.22.1/cpan/HTTP-Tiny/t/160_cookies.t
perl-5.22.1/cpan/HTTP-Tiny/t/161_basic_auth.t
perl-5.22.1/cpan/HTTP-Tiny/t/162_proxy_auth.t
perl-5.22.1/cpan/HTTP-Tiny/t/170_keepalive.t
perl-5.22.1/cpan/HTTP-Tiny/t/BrokenCookieJar.pm
perl-5.22.1/cpan/HTTP-Tiny/t/SimpleCookieJar.pm
perl-5.22.1/cpan/HTTP-Tiny/t/Util.pm
perl-5.22.1/cpan/IO-Compress/
perl-5.22.1/cpan/IO-Compress/Makefile.PL
perl-5.22.1/cpan/IO-Compress/bin/
perl-5.22.1/cpan/IO-Compress/bin/zipdetails
perl-5.22.1/cpan/IO-Compress/lib/
perl-5.22.1/cpan/IO-Compress/lib/Compress/
perl-5.22.1/cpan/IO-Compress/lib/Compress/Zlib.pm
perl-5.22.1/cpan/IO-Compress/lib/File/
perl-5.22.1/cpan/IO-Compress/lib/File/GlobMapper.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Adapter/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Base/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Base.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Bzip2.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Deflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/FAQ.pod
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Gzip/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Gzip.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Gzip/Constants.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/RawDeflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Zip/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Zip.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Zip/Constants.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Zlib/
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Zlib/Constants.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Compress/Zlib/Extra.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Adapter/
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Bunzip2.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Identity.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Inflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/AnyInflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Base.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Bunzip2.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Gunzip.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Inflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm
perl-5.22.1/cpan/IO-Compress/lib/IO/Uncompress/Unzip.pm
perl-5.22.1/cpan/IO-Compress/private/
perl-5.22.1/cpan/IO-Compress/private/MakeUtil.pm
perl-5.22.1/cpan/IO-Compress/t/
perl-5.22.1/cpan/IO-Compress/t/000prereq.t
perl-5.22.1/cpan/IO-Compress/t/001bzip2.t
perl-5.22.1/cpan/IO-Compress/t/001zlib-generic-deflate.t
perl-5.22.1/cpan/IO-Compress/t/001zlib-generic-gzip.t
perl-5.22.1/cpan/IO-Compress/t/001zlib-generic-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/001zlib-generic-zip.t
perl-5.22.1/cpan/IO-Compress/t/002any-deflate.t
perl-5.22.1/cpan/IO-Compress/t/002any-gzip.t
perl-5.22.1/cpan/IO-Compress/t/002any-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/002any-transparent.t
perl-5.22.1/cpan/IO-Compress/t/002any-zip.t
perl-5.22.1/cpan/IO-Compress/t/004gziphdr.t
perl-5.22.1/cpan/IO-Compress/t/005defhdr.t
perl-5.22.1/cpan/IO-Compress/t/006zip.t
perl-5.22.1/cpan/IO-Compress/t/01misc.t
perl-5.22.1/cpan/IO-Compress/t/020isize.t
perl-5.22.1/cpan/IO-Compress/t/050interop-gzip.t
perl-5.22.1/cpan/IO-Compress/t/100generic-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/100generic-deflate.t
perl-5.22.1/cpan/IO-Compress/t/100generic-gzip.t
perl-5.22.1/cpan/IO-Compress/t/100generic-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/100generic-zip.t
perl-5.22.1/cpan/IO-Compress/t/101truncate-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/101truncate-deflate.t
perl-5.22.1/cpan/IO-Compress/t/101truncate-gzip.t
perl-5.22.1/cpan/IO-Compress/t/101truncate-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/101truncate-zip.t
perl-5.22.1/cpan/IO-Compress/t/102tied-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/102tied-deflate.t
perl-5.22.1/cpan/IO-Compress/t/102tied-gzip.t
perl-5.22.1/cpan/IO-Compress/t/102tied-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/102tied-zip.t
perl-5.22.1/cpan/IO-Compress/t/103newtied-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/103newtied-deflate.t
perl-5.22.1/cpan/IO-Compress/t/103newtied-gzip.t
perl-5.22.1/cpan/IO-Compress/t/103newtied-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/103newtied-zip.t
perl-5.22.1/cpan/IO-Compress/t/104destroy-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/104destroy-deflate.t
perl-5.22.1/cpan/IO-Compress/t/104destroy-gzip.t
perl-5.22.1/cpan/IO-Compress/t/104destroy-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/104destroy-zip.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-deflate.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-gzip-only.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-gzip.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-zip-bzip2-only.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-zip-only.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-zip-store-only.t
perl-5.22.1/cpan/IO-Compress/t/105oneshot-zip.t
perl-5.22.1/cpan/IO-Compress/t/106prime-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/106prime-deflate.t
perl-5.22.1/cpan/IO-Compress/t/106prime-gzip.t
perl-5.22.1/cpan/IO-Compress/t/106prime-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/106prime-zip.t
perl-5.22.1/cpan/IO-Compress/t/107multi-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/107multi-deflate.t
perl-5.22.1/cpan/IO-Compress/t/107multi-gzip.t
perl-5.22.1/cpan/IO-Compress/t/107multi-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/107multi-zip.t
perl-5.22.1/cpan/IO-Compress/t/108anyunc-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/108anyunc-deflate.t
perl-5.22.1/cpan/IO-Compress/t/108anyunc-gzip.t
perl-5.22.1/cpan/IO-Compress/t/108anyunc-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/108anyunc-transparent.t
perl-5.22.1/cpan/IO-Compress/t/108anyunc-zip.t
perl-5.22.1/cpan/IO-Compress/t/109merge-deflate.t
perl-5.22.1/cpan/IO-Compress/t/109merge-gzip.t
perl-5.22.1/cpan/IO-Compress/t/109merge-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/109merge-zip.t
perl-5.22.1/cpan/IO-Compress/t/110encode-bzip2.t
perl-5.22.1/cpan/IO-Compress/t/110encode-deflate.t
perl-5.22.1/cpan/IO-Compress/t/110encode-gzip.t
perl-5.22.1/cpan/IO-Compress/t/110encode-rawdeflate.t
perl-5.22.1/cpan/IO-Compress/t/110encode-zip.t
perl-5.22.1/cpan/IO-Compress/t/111const-deflate.t
perl-5.22.1/cpan/IO-Compress/t/999pod.t
perl-5.22.1/cpan/IO-Compress/t/compress/
perl-5.22.1/cpan/IO-Compress/t/compress/CompTestUtils.pm
perl-5.22.1/cpan/IO-Compress/t/compress/any.pl
perl-5.22.1/cpan/IO-Compress/t/compress/anyunc.pl
perl-5.22.1/cpan/IO-Compress/t/compress/destroy.pl
perl-5.22.1/cpan/IO-Compress/t/compress/encode.pl
perl-5.22.1/cpan/IO-Compress/t/compress/generic.pl
perl-5.22.1/cpan/IO-Compress/t/compress/merge.pl
perl-5.22.1/cpan/IO-Compress/t/compress/multi.pl
perl-5.22.1/cpan/IO-Compress/t/compress/newtied.pl
perl-5.22.1/cpan/IO-Compress/t/compress/oneshot.pl
perl-5.22.1/cpan/IO-Compress/t/compress/prime.pl
perl-5.22.1/cpan/IO-Compress/t/compress/tied.pl
perl-5.22.1/cpan/IO-Compress/t/compress/truncate.pl
perl-5.22.1/cpan/IO-Compress/t/compress/zlib-generic.pl
perl-5.22.1/cpan/IO-Compress/t/cz-01version.t
perl-5.22.1/cpan/IO-Compress/t/cz-03zlib-v1.t
perl-5.22.1/cpan/IO-Compress/t/cz-06gzsetp.t
perl-5.22.1/cpan/IO-Compress/t/cz-08encoding.t
perl-5.22.1/cpan/IO-Compress/t/cz-14gzopen.t
perl-5.22.1/cpan/IO-Compress/t/globmapper.t
perl-5.22.1/cpan/IO-Socket-IP/
perl-5.22.1/cpan/IO-Socket-IP/lib/
perl-5.22.1/cpan/IO-Socket-IP/lib/IO/
perl-5.22.1/cpan/IO-Socket-IP/lib/IO/Socket/
perl-5.22.1/cpan/IO-Socket-IP/lib/IO/Socket/IP.pm
perl-5.22.1/cpan/IO-Socket-IP/t/
perl-5.22.1/cpan/IO-Socket-IP/t/00use.t
perl-5.22.1/cpan/IO-Socket-IP/t/01local-client-v4.t
perl-5.22.1/cpan/IO-Socket-IP/t/02local-server-v4.t
perl-5.22.1/cpan/IO-Socket-IP/t/03local-cross-v4.t
perl-5.22.1/cpan/IO-Socket-IP/t/04local-client-v6.t
perl-5.22.1/cpan/IO-Socket-IP/t/05local-server-v6.t
perl-5.22.1/cpan/IO-Socket-IP/t/06local-cross-v6.t
perl-5.22.1/cpan/IO-Socket-IP/t/10args.t
perl-5.22.1/cpan/IO-Socket-IP/t/11sockopts.t
perl-5.22.1/cpan/IO-Socket-IP/t/12port-fallback.t
perl-5.22.1/cpan/IO-Socket-IP/t/13addrinfo.t
perl-5.22.1/cpan/IO-Socket-IP/t/14fileno.t
perl-5.22.1/cpan/IO-Socket-IP/t/15io-socket.t
perl-5.22.1/cpan/IO-Socket-IP/t/16v6only.t
perl-5.22.1/cpan/IO-Socket-IP/t/17gai-flags.t
perl-5.22.1/cpan/IO-Socket-IP/t/18fdopen.t
perl-5.22.1/cpan/IO-Socket-IP/t/19no-addrs.t
perl-5.22.1/cpan/IO-Socket-IP/t/20subclass.t
perl-5.22.1/cpan/IO-Socket-IP/t/21as-inet.t
perl-5.22.1/cpan/IO-Socket-IP/t/22timeout.t
perl-5.22.1/cpan/IO-Socket-IP/t/30nonblocking-connect.t
perl-5.22.1/cpan/IO-Socket-IP/t/31nonblocking-connect-internet.t
perl-5.22.1/cpan/IO-Socket-IP/t/99pod.t
perl-5.22.1/cpan/IO-Zlib/
perl-5.22.1/cpan/IO-Zlib/Zlib.pm
perl-5.22.1/cpan/IO-Zlib/t/
perl-5.22.1/cpan/IO-Zlib/t/basic.t
perl-5.22.1/cpan/IO-Zlib/t/external.t
perl-5.22.1/cpan/IO-Zlib/t/getc.t
perl-5.22.1/cpan/IO-Zlib/t/getline.t
perl-5.22.1/cpan/IO-Zlib/t/import.t
perl-5.22.1/cpan/IO-Zlib/t/large.t
perl-5.22.1/cpan/IO-Zlib/t/tied.t
perl-5.22.1/cpan/IO-Zlib/t/uncomp1.t
perl-5.22.1/cpan/IO-Zlib/t/uncomp2.t
perl-5.22.1/cpan/IPC-Cmd/
perl-5.22.1/cpan/IPC-Cmd/lib/
perl-5.22.1/cpan/IPC-Cmd/lib/IPC/
perl-5.22.1/cpan/IPC-Cmd/lib/IPC/Cmd.pm
perl-5.22.1/cpan/IPC-Cmd/t/
perl-5.22.1/cpan/IPC-Cmd/t/01_IPC-Cmd.t
perl-5.22.1/cpan/IPC-Cmd/t/02_Interactive.t
perl-5.22.1/cpan/IPC-Cmd/t/03_run-forked.t
perl-5.22.1/cpan/IPC-Cmd/t/src/
perl-5.22.1/cpan/IPC-Cmd/t/src/child.pl
perl-5.22.1/cpan/IPC-Cmd/t/src/output.pl
perl-5.22.1/cpan/IPC-Cmd/t/src/x.tgz
perl-5.22.1/cpan/IPC-SysV/
perl-5.22.1/cpan/IPC-SysV/Makefile.PL
perl-5.22.1/cpan/IPC-SysV/SysV.xs
perl-5.22.1/cpan/IPC-SysV/hints/
perl-5.22.1/cpan/IPC-SysV/hints/cygwin.pl
perl-5.22.1/cpan/IPC-SysV/hints/next_3.pl
perl-5.22.1/cpan/IPC-SysV/lib/
perl-5.22.1/cpan/IPC-SysV/lib/IPC/
perl-5.22.1/cpan/IPC-SysV/lib/IPC/Msg.pm
perl-5.22.1/cpan/IPC-SysV/lib/IPC/Semaphore.pm
perl-5.22.1/cpan/IPC-SysV/lib/IPC/SharedMem.pm
perl-5.22.1/cpan/IPC-SysV/lib/IPC/SysV.pm
perl-5.22.1/cpan/IPC-SysV/regen.pl
perl-5.22.1/cpan/IPC-SysV/t/
perl-5.22.1/cpan/IPC-SysV/t/ipcsysv.t
perl-5.22.1/cpan/IPC-SysV/t/msg.t
perl-5.22.1/cpan/IPC-SysV/t/pod.t
perl-5.22.1/cpan/IPC-SysV/t/podcov.t
perl-5.22.1/cpan/IPC-SysV/t/sem.t
perl-5.22.1/cpan/IPC-SysV/t/shm.t
perl-5.22.1/cpan/IPC-SysV/typemap
perl-5.22.1/cpan/JSON-PP/
perl-5.22.1/cpan/JSON-PP/bin/
perl-5.22.1/cpan/JSON-PP/bin/json_pp
perl-5.22.1/cpan/JSON-PP/lib/
perl-5.22.1/cpan/JSON-PP/lib/JSON/
perl-5.22.1/cpan/JSON-PP/lib/JSON/PP/
perl-5.22.1/cpan/JSON-PP/lib/JSON/PP.pm
perl-5.22.1/cpan/JSON-PP/lib/JSON/PP/Boolean.pm
perl-5.22.1/cpan/JSON-PP/t/
perl-5.22.1/cpan/JSON-PP/t/000_load.t
perl-5.22.1/cpan/JSON-PP/t/001_utf8.t
perl-5.22.1/cpan/JSON-PP/t/002_error.t
perl-5.22.1/cpan/JSON-PP/t/003_types.t
perl-5.22.1/cpan/JSON-PP/t/006_pc_pretty.t
perl-5.22.1/cpan/JSON-PP/t/007_pc_esc.t
perl-5.22.1/cpan/JSON-PP/t/008_pc_base.t
perl-5.22.1/cpan/JSON-PP/t/009_pc_extra_number.t
perl-5.22.1/cpan/JSON-PP/t/010_pc_keysort.t
perl-5.22.1/cpan/JSON-PP/t/011_pc_expo.t
perl-5.22.1/cpan/JSON-PP/t/012_blessed.t
perl-5.22.1/cpan/JSON-PP/t/013_limit.t
perl-5.22.1/cpan/JSON-PP/t/014_latin1.t
perl-5.22.1/cpan/JSON-PP/t/015_prefix.t
perl-5.22.1/cpan/JSON-PP/t/016_tied.t
perl-5.22.1/cpan/JSON-PP/t/017_relaxed.t
perl-5.22.1/cpan/JSON-PP/t/018_json_checker.t
perl-5.22.1/cpan/JSON-PP/t/019_incr.t
perl-5.22.1/cpan/JSON-PP/t/020_unknown.t
perl-5.22.1/cpan/JSON-PP/t/021_evans_bugrep.t
perl-5.22.1/cpan/JSON-PP/t/022_comment_at_eof.t
perl-5.22.1/cpan/JSON-PP/t/099_binary.t
perl-5.22.1/cpan/JSON-PP/t/104_sortby.t
perl-5.22.1/cpan/JSON-PP/t/105_esc_slash.t
perl-5.22.1/cpan/JSON-PP/t/106_allow_barekey.t
perl-5.22.1/cpan/JSON-PP/t/107_allow_singlequote.t
perl-5.22.1/cpan/JSON-PP/t/108_decode.t
perl-5.22.1/cpan/JSON-PP/t/109_encode.t
perl-5.22.1/cpan/JSON-PP/t/110_bignum.t
perl-5.22.1/cpan/JSON-PP/t/112_upgrade.t
perl-5.22.1/cpan/JSON-PP/t/113_overloaded_eq.t
perl-5.22.1/cpan/JSON-PP/t/114_decode_prefix.t
perl-5.22.1/cpan/JSON-PP/t/115_tie_ixhash.t
perl-5.22.1/cpan/JSON-PP/t/116_incr_parse_fixed.t
perl-5.22.1/cpan/JSON-PP/t/_unicode_handling.pm
perl-5.22.1/cpan/JSON-PP/t/zero-mojibake.t
perl-5.22.1/cpan/Locale-Codes/
perl-5.22.1/cpan/Locale-Codes/lib/
perl-5.22.1/cpan/Locale-Codes/lib/Locale/
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/API.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Changes.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Constants.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Constants.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Country.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Country.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Country_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Country_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Currency.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Currency.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Currency_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Currency_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangExt.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangExt.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangExt_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangFam.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangFam.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangFam_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangVar.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangVar.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/LangVar_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Language.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Language.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Language_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Language_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Script.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Script.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Script_Codes.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Codes/Script_Retired.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Country.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Country.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Currency.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Currency.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Language.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Language.pod
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Script.pm
perl-5.22.1/cpan/Locale-Codes/lib/Locale/Script.pod
perl-5.22.1/cpan/Locale-Codes/t/
perl-5.22.1/cpan/Locale-Codes/t/alias_code.t
perl-5.22.1/cpan/Locale-Codes/t/alias_code_old.t
perl-5.22.1/cpan/Locale-Codes/t/code2country.t
perl-5.22.1/cpan/Locale-Codes/t/code2country_old.t
perl-5.22.1/cpan/Locale-Codes/t/code2currency.t
perl-5.22.1/cpan/Locale-Codes/t/code2langext.t
perl-5.22.1/cpan/Locale-Codes/t/code2langfam.t
perl-5.22.1/cpan/Locale-Codes/t/code2language.t
perl-5.22.1/cpan/Locale-Codes/t/code2langvar.t
perl-5.22.1/cpan/Locale-Codes/t/code2script.t
perl-5.22.1/cpan/Locale-Codes/t/country.t
perl-5.22.1/cpan/Locale-Codes/t/country2code.t
perl-5.22.1/cpan/Locale-Codes/t/country2code_old.t
perl-5.22.1/cpan/Locale-Codes/t/country_code2code.t
perl-5.22.1/cpan/Locale-Codes/t/country_code2code_old.t
perl-5.22.1/cpan/Locale-Codes/t/country_old.t
perl-5.22.1/cpan/Locale-Codes/t/currency2code.t
perl-5.22.1/cpan/Locale-Codes/t/currency2code_old.t
perl-5.22.1/cpan/Locale-Codes/t/langext2code.t
perl-5.22.1/cpan/Locale-Codes/t/langfam2code.t
perl-5.22.1/cpan/Locale-Codes/t/language.t
perl-5.22.1/cpan/Locale-Codes/t/language2code.t
perl-5.22.1/cpan/Locale-Codes/t/language_old.t
perl-5.22.1/cpan/Locale-Codes/t/langvar2code.t
perl-5.22.1/cpan/Locale-Codes/t/script2code.t
perl-5.22.1/cpan/Locale-Codes/t/script2code_old.t
perl-5.22.1/cpan/Locale-Codes/t/testfunc.pl
perl-5.22.1/cpan/Locale-Maketext-Simple/
perl-5.22.1/cpan/Locale-Maketext-Simple/lib/
perl-5.22.1/cpan/Locale-Maketext-Simple/lib/Locale/
perl-5.22.1/cpan/Locale-Maketext-Simple/lib/Locale/Maketext/
perl-5.22.1/cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
perl-5.22.1/cpan/Locale-Maketext-Simple/t/
perl-5.22.1/cpan/Locale-Maketext-Simple/t/0-signature.t
perl-5.22.1/cpan/Locale-Maketext-Simple/t/1-basic.t
perl-5.22.1/cpan/Locale-Maketext-Simple/t/2-load_po_without_i_default.t
perl-5.22.1/cpan/Locale-Maketext-Simple/t/3-load_po_with_i_default.t
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_with_i_default/
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_without_i_default/
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po
perl-5.22.1/cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po
perl-5.22.1/cpan/MIME-Base64/
perl-5.22.1/cpan/MIME-Base64/Base64.pm
perl-5.22.1/cpan/MIME-Base64/Base64.xs
perl-5.22.1/cpan/MIME-Base64/QuotedPrint.pm
perl-5.22.1/cpan/MIME-Base64/t/
perl-5.22.1/cpan/MIME-Base64/t/base64.t
perl-5.22.1/cpan/MIME-Base64/t/length.t
perl-5.22.1/cpan/MIME-Base64/t/quoted-print.t
perl-5.22.1/cpan/MIME-Base64/t/unicode.t
perl-5.22.1/cpan/Math-Complex/
perl-5.22.1/cpan/Math-Complex/lib/
perl-5.22.1/cpan/Math-Complex/lib/Math/
perl-5.22.1/cpan/Math-Complex/lib/Math/Complex.pm
perl-5.22.1/cpan/Math-Complex/lib/Math/Trig.pm
perl-5.22.1/cpan/Math-Complex/t/
perl-5.22.1/cpan/Math-Complex/t/Complex.t
perl-5.22.1/cpan/Math-Complex/t/Trig.t
perl-5.22.1/cpan/Math-Complex/t/underbar.t
perl-5.22.1/cpan/Memoize/
perl-5.22.1/cpan/Memoize/Memoize/
perl-5.22.1/cpan/Memoize/Memoize.pm
perl-5.22.1/cpan/Memoize/Memoize/AnyDBM_File.pm
perl-5.22.1/cpan/Memoize/Memoize/Expire.pm
perl-5.22.1/cpan/Memoize/Memoize/ExpireFile.pm
perl-5.22.1/cpan/Memoize/Memoize/ExpireTest.pm
perl-5.22.1/cpan/Memoize/Memoize/NDBM_File.pm
perl-5.22.1/cpan/Memoize/Memoize/SDBM_File.pm
perl-5.22.1/cpan/Memoize/Memoize/Storable.pm
perl-5.22.1/cpan/Memoize/t/
perl-5.22.1/cpan/Memoize/t/array.t
perl-5.22.1/cpan/Memoize/t/array_confusion.t
perl-5.22.1/cpan/Memoize/t/correctness.t
perl-5.22.1/cpan/Memoize/t/errors.t
perl-5.22.1/cpan/Memoize/t/expfile.t
perl-5.22.1/cpan/Memoize/t/expire.t
perl-5.22.1/cpan/Memoize/t/expmod_n.t
perl-5.22.1/cpan/Memoize/t/expmod_t.t
perl-5.22.1/cpan/Memoize/t/flush.t
perl-5.22.1/cpan/Memoize/t/normalize.t
perl-5.22.1/cpan/Memoize/t/prototype.t
perl-5.22.1/cpan/Memoize/t/speed.t
perl-5.22.1/cpan/Memoize/t/tie.t
perl-5.22.1/cpan/Memoize/t/tie_gdbm.t
perl-5.22.1/cpan/Memoize/t/tie_ndbm.t
perl-5.22.1/cpan/Memoize/t/tie_sdbm.t
perl-5.22.1/cpan/Memoize/t/tie_storable.t
perl-5.22.1/cpan/Memoize/t/tiefeatures.t
perl-5.22.1/cpan/Memoize/t/unmemoize.t
perl-5.22.1/cpan/Module-Load/
perl-5.22.1/cpan/Module-Load-Conditional/
perl-5.22.1/cpan/Module-Load-Conditional/lib/
perl-5.22.1/cpan/Module-Load-Conditional/lib/Module/
perl-5.22.1/cpan/Module-Load-Conditional/lib/Module/Load/
perl-5.22.1/cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/
perl-5.22.1/cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t
perl-5.22.1/cpan/Module-Load-Conditional/t/test_lib/
perl-5.22.1/cpan/Module-Load-Conditional/t/test_lib/a/
perl-5.22.1/cpan/Module-Load-Conditional/t/test_lib/a/X.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/test_lib/b/
perl-5.22.1/cpan/Module-Load-Conditional/t/test_lib/b/X.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/AutoLoad.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/Commented.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/InPod.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/LoadIt.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/LoadMe.pl
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/MustBe/
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/MustBe/Loaded.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/NotAutoLoad.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/NotMain.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/NotX.pm
perl-5.22.1/cpan/Module-Load-Conditional/t/to_load/ToBeLoaded
perl-5.22.1/cpan/Module-Load/lib/
perl-5.22.1/cpan/Module-Load/lib/Module/
perl-5.22.1/cpan/Module-Load/lib/Module/Load.pm
perl-5.22.1/cpan/Module-Load/t/
perl-5.22.1/cpan/Module-Load/t/01_Module-Load.t
perl-5.22.1/cpan/Module-Load/t/02_Module-Load.t
perl-5.22.1/cpan/Module-Load/t/to_load/
perl-5.22.1/cpan/Module-Load/t/to_load/LoadIt.pm
perl-5.22.1/cpan/Module-Load/t/to_load/LoadMe.pl
perl-5.22.1/cpan/Module-Load/t/to_load/Must/
perl-5.22.1/cpan/Module-Load/t/to_load/Must/Be/
perl-5.22.1/cpan/Module-Load/t/to_load/Must/Be/Loaded.pm
perl-5.22.1/cpan/Module-Load/t/to_load/TestModule.pm
perl-5.22.1/cpan/Module-Load/t/to_load/ToBeLoaded
perl-5.22.1/cpan/Module-Load/t/to_load/config_file
perl-5.22.1/cpan/Module-Loaded/
perl-5.22.1/cpan/Module-Loaded/lib/
perl-5.22.1/cpan/Module-Loaded/lib/Module/
perl-5.22.1/cpan/Module-Loaded/lib/Module/Loaded.pm
perl-5.22.1/cpan/Module-Loaded/t/
perl-5.22.1/cpan/Module-Loaded/t/01_Module-Loaded.t
perl-5.22.1/cpan/Module-Metadata/
perl-5.22.1/cpan/Module-Metadata/corpus/
perl-5.22.1/cpan/Module-Metadata/corpus/BOMTest/
perl-5.22.1/cpan/Module-Metadata/corpus/BOMTest/UTF16BE.pm
perl-5.22.1/cpan/Module-Metadata/corpus/BOMTest/UTF16LE.pm
perl-5.22.1/cpan/Module-Metadata/corpus/BOMTest/UTF8.pm
perl-5.22.1/cpan/Module-Metadata/lib/
perl-5.22.1/cpan/Module-Metadata/lib/Module/
perl-5.22.1/cpan/Module-Metadata/lib/Module/Metadata.pm
perl-5.22.1/cpan/Module-Metadata/t/
perl-5.22.1/cpan/Module-Metadata/t/contains_pod.t
perl-5.22.1/cpan/Module-Metadata/t/encoding.t
perl-5.22.1/cpan/Module-Metadata/t/endpod.t
perl-5.22.1/cpan/Module-Metadata/t/lib/
perl-5.22.1/cpan/Module-Metadata/t/lib/0_1/
perl-5.22.1/cpan/Module-Metadata/t/lib/0_1/Foo.pm
perl-5.22.1/cpan/Module-Metadata/t/lib/0_2/
perl-5.22.1/cpan/Module-Metadata/t/lib/0_2/Foo.pm
perl-5.22.1/cpan/Module-Metadata/t/lib/ENDPOD.pm
perl-5.22.1/cpan/Module-Metadata/t/metadata.t
perl-5.22.1/cpan/Module-Metadata/t/taint.t
perl-5.22.1/cpan/Module-Metadata/t/version.t
perl-5.22.1/cpan/NEXT/
perl-5.22.1/cpan/NEXT/lib/
perl-5.22.1/cpan/NEXT/lib/NEXT.pm
perl-5.22.1/cpan/NEXT/t/
perl-5.22.1/cpan/NEXT/t/actual.t
perl-5.22.1/cpan/NEXT/t/actuns.t
perl-5.22.1/cpan/NEXT/t/dynamically_scoped_regex_vars.t
perl-5.22.1/cpan/NEXT/t/next.t
perl-5.22.1/cpan/NEXT/t/stringify.t
perl-5.22.1/cpan/NEXT/t/unseen.t
perl-5.22.1/cpan/Params-Check/
perl-5.22.1/cpan/Params-Check/lib/
perl-5.22.1/cpan/Params-Check/lib/Params/
perl-5.22.1/cpan/Params-Check/lib/Params/Check.pm
perl-5.22.1/cpan/Params-Check/t/
perl-5.22.1/cpan/Params-Check/t/01_Params-Check.t
perl-5.22.1/cpan/Parse-CPAN-Meta/
perl-5.22.1/cpan/Parse-CPAN-Meta/lib/
perl-5.22.1/cpan/Parse-CPAN-Meta/lib/Parse/
perl-5.22.1/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/
perl-5.22.1/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm
perl-5.22.1/cpan/Parse-CPAN-Meta/t/
perl-5.22.1/cpan/Parse-CPAN-Meta/t/02_api.t
perl-5.22.1/cpan/Parse-CPAN-Meta/t/03_functions.t
perl-5.22.1/cpan/Parse-CPAN-Meta/t/04_export.t
perl-5.22.1/cpan/Parse-CPAN-Meta/t/05_errors.t
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/BadMETA.yml
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/META-VR.json
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/META-VR.yml
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/bareyaml.meta
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/json.meta
perl-5.22.1/cpan/Parse-CPAN-Meta/t/data/yaml.meta
perl-5.22.1/cpan/Parse-CPAN-Meta/t/lib/
perl-5.22.1/cpan/Parse-CPAN-Meta/t/lib/Parse/
perl-5.22.1/cpan/Parse-CPAN-Meta/t/lib/Parse/CPAN/
perl-5.22.1/cpan/Parse-CPAN-Meta/t/lib/Parse/CPAN/Meta/
perl-5.22.1/cpan/Parse-CPAN-Meta/t/lib/Parse/CPAN/Meta/Test.pm
perl-5.22.1/cpan/Perl-OSType/
perl-5.22.1/cpan/Perl-OSType/lib/
perl-5.22.1/cpan/Perl-OSType/lib/Perl/
perl-5.22.1/cpan/Perl-OSType/lib/Perl/OSType.pm
perl-5.22.1/cpan/Perl-OSType/t/
perl-5.22.1/cpan/Perl-OSType/t/OSType.t
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/lib/
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/lib/PerlIO/
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/lib/PerlIO/via/
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/lib/PerlIO/via/QuotedPrint.pm
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/t/
perl-5.22.1/cpan/PerlIO-via-QuotedPrint/t/QuotedPrint.t
perl-5.22.1/cpan/Pod-Checker/
perl-5.22.1/cpan/Pod-Checker/lib/
perl-5.22.1/cpan/Pod-Checker/lib/Pod/
perl-5.22.1/cpan/Pod-Checker/lib/Pod/Checker.pm
perl-5.22.1/cpan/Pod-Checker/scripts/
perl-5.22.1/cpan/Pod-Checker/scripts/podchecker.PL
perl-5.22.1/cpan/Pod-Checker/t/
perl-5.22.1/cpan/Pod-Checker/t/pod/
perl-5.22.1/cpan/Pod-Checker/t/pod/contains_bad_pod.xr
perl-5.22.1/cpan/Pod-Checker/t/pod/empty.xr
perl-5.22.1/cpan/Pod-Checker/t/pod/podchkenc.t
perl-5.22.1/cpan/Pod-Checker/t/pod/podchkenc.xr
perl-5.22.1/cpan/Pod-Checker/t/pod/poderrs.t
perl-5.22.1/cpan/Pod-Checker/t/pod/poderrs.xr
perl-5.22.1/cpan/Pod-Checker/t/pod/selfcheck.t
perl-5.22.1/cpan/Pod-Checker/t/pod/testcmp.pl
perl-5.22.1/cpan/Pod-Checker/t/pod/testpchk.pl
perl-5.22.1/cpan/Pod-Escapes/
perl-5.22.1/cpan/Pod-Escapes/lib/
perl-5.22.1/cpan/Pod-Escapes/lib/Pod/
perl-5.22.1/cpan/Pod-Escapes/lib/Pod/Escapes.pm
perl-5.22.1/cpan/Pod-Escapes/t/
perl-5.22.1/cpan/Pod-Escapes/t/01_about_verbose.t
perl-5.22.1/cpan/Pod-Escapes/t/10_main.t
perl-5.22.1/cpan/Pod-Escapes/t/15_name2charnum.t
perl-5.22.1/cpan/Pod-Parser/
perl-5.22.1/cpan/Pod-Parser/lib/
perl-5.22.1/cpan/Pod-Parser/lib/Pod/
perl-5.22.1/cpan/Pod-Parser/lib/Pod/Find.pm
perl-5.22.1/cpan/Pod-Parser/lib/Pod/InputObjects.pm
perl-5.22.1/cpan/Pod-Parser/lib/Pod/ParseUtils.pm
perl-5.22.1/cpan/Pod-Parser/lib/Pod/Parser.pm
perl-5.22.1/cpan/Pod-Parser/lib/Pod/PlainText.pm
perl-5.22.1/cpan/Pod-Parser/lib/Pod/Select.pm
perl-5.22.1/cpan/Pod-Parser/scripts/
perl-5.22.1/cpan/Pod-Parser/scripts/podselect.PL
perl-5.22.1/cpan/Pod-Parser/t/
perl-5.22.1/cpan/Pod-Parser/t/pod/
perl-5.22.1/cpan/Pod-Parser/t/pod/contains_bad_pod.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/contains_pod.t
perl-5.22.1/cpan/Pod-Parser/t/pod/contains_pod.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/empty.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/emptycmd.t
perl-5.22.1/cpan/Pod-Parser/t/pod/emptycmd.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/find.t
perl-5.22.1/cpan/Pod-Parser/t/pod/for.t
perl-5.22.1/cpan/Pod-Parser/t/pod/for.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/headings.t
perl-5.22.1/cpan/Pod-Parser/t/pod/headings.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/include.t
perl-5.22.1/cpan/Pod-Parser/t/pod/include.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/included.t
perl-5.22.1/cpan/Pod-Parser/t/pod/included.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/lref.t
perl-5.22.1/cpan/Pod-Parser/t/pod/lref.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/multiline_items.t
perl-5.22.1/cpan/Pod-Parser/t/pod/multiline_items.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/nested_items.t
perl-5.22.1/cpan/Pod-Parser/t/pod/nested_items.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/nested_seqs.t
perl-5.22.1/cpan/Pod-Parser/t/pod/nested_seqs.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/oneline_cmds.t
perl-5.22.1/cpan/Pod-Parser/t/pod/oneline_cmds.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/podselect.t
perl-5.22.1/cpan/Pod-Parser/t/pod/podselect.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/selfcheck.t
perl-5.22.1/cpan/Pod-Parser/t/pod/special_seqs.t
perl-5.22.1/cpan/Pod-Parser/t/pod/special_seqs.xr
perl-5.22.1/cpan/Pod-Parser/t/pod/testcmp.pl
perl-5.22.1/cpan/Pod-Parser/t/pod/testp2pt.pl
perl-5.22.1/cpan/Pod-Parser/t/pod/testpchk.pl
perl-5.22.1/cpan/Pod-Parser/t/pod/testpods/
perl-5.22.1/cpan/Pod-Parser/t/pod/testpods/lib/
perl-5.22.1/cpan/Pod-Parser/t/pod/testpods/lib/Pod/
perl-5.22.1/cpan/Pod-Parser/t/pod/testpods/lib/Pod/Stuff.pm
perl-5.22.1/cpan/Pod-Parser/t/pod/twice.t
perl-5.22.1/cpan/Pod-Perldoc/
perl-5.22.1/cpan/Pod-Perldoc/Makefile.PL
perl-5.22.1/cpan/Pod-Perldoc/corpus/
perl-5.22.1/cpan/Pod-Perldoc/corpus/no-head.pod
perl-5.22.1/cpan/Pod-Perldoc/corpus/perlfunc.pod
perl-5.22.1/cpan/Pod-Perldoc/corpus/utf8.pod
perl-5.22.1/cpan/Pod-Perldoc/lib/
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/BaseTo.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/GetOptsOO.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToANSI.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToChecker.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToMan.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToNroff.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToPod.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToRtf.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToTerm.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToText.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToTk.pm
perl-5.22.1/cpan/Pod-Perldoc/lib/Pod/Perldoc/ToXml.pm
perl-5.22.1/cpan/Pod-Perldoc/perldoc.pod
perl-5.22.1/cpan/Pod-Perldoc/t/
perl-5.22.1/cpan/Pod-Perldoc/t/load.t
perl-5.22.1/cpan/Pod-Perldoc/t/man/
perl-5.22.1/cpan/Pod-Perldoc/t/man/_get_columns.t
perl-5.22.1/cpan/Pod-Perldoc/t/pod.t
perl-5.22.1/cpan/Pod-Simple/
perl-5.22.1/cpan/Pod-Simple/lib/
perl-5.22.1/cpan/Pod-Simple/lib/Pod/
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple.pod
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/BlackBox.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Checker.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Debug.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/DumpAsText.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/DumpAsXML.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/HTML.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/HTMLBatch.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/HTMLLegacy.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Methody.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Progress.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/PullParser.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/PullParserEndToken.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/PullParserTextToken.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/PullParserToken.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/RTF.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Search.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/SimpleTree.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Subclassing.pod
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Text.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/TextContent.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/TiedOutFH.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/Transcode.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/TranscodeDumb.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/TranscodeSmart.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm
perl-5.22.1/cpan/Pod-Simple/lib/Pod/Simple/XMLOutStream.pm
perl-5.22.1/cpan/Pod-Simple/t/
perl-5.22.1/cpan/Pod-Simple/t/00about.t
perl-5.22.1/cpan/Pod-Simple/t/20_skip.t
perl-5.22.1/cpan/Pod-Simple/t/ac_d.t
perl-5.22.1/cpan/Pod-Simple/t/accept01.t
perl-5.22.1/cpan/Pod-Simple/t/accept05.t
perl-5.22.1/cpan/Pod-Simple/t/basic.t
perl-5.22.1/cpan/Pod-Simple/t/begin.t
perl-5.22.1/cpan/Pod-Simple/t/cbacks.t
perl-5.22.1/cpan/Pod-Simple/t/chunking.t
perl-5.22.1/cpan/Pod-Simple/t/closeys.t
perl-5.22.1/cpan/Pod-Simple/t/corpus/
perl-5.22.1/cpan/Pod-Simple/t/corpus.t
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jp.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jp.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jpx.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jpx.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jpy.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jpy.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jpz.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/2202jpz.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/8859_7.pod
perl-5.22.1/cpan/Pod-Simple/t/corpus/8859_7.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/cp1256.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/cp1256.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/enc_char_directive.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/enc_char_directive.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/enc_char_wrong_directive.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/enc_char_wrong_directive.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn01.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn01.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn02.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn02.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn03.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn03.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn04.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/encwarn04.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/fet_cont.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/fet_cont.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/fet_dup.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/fet_dup.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/iso6.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/iso6.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/koi8r.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/koi8r.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/laozi38.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/laozi38.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/laozi38b.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/laozi38b.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/laozi38p.pod
perl-5.22.1/cpan/Pod-Simple/t/corpus/laozi38p.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/lat1fr.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/lat1fr.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/lat1frim.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/lat1frim.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/nonesuch.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/nonesuch.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/pasternak_cp1251.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/pasternak_cp1251.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain_explicit.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain_explicit.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain_latin1.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain_latin1.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain_utf8.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/plain_utf8.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/polish_utf8.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/polish_utf8.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/s2763_sjis.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/s2763_sjis.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus/thai_iso11.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus/thai_iso11.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus2/
perl-5.22.1/cpan/Pod-Simple/t/corpus2/README
perl-5.22.1/cpan/Pod-Simple/t/corpus2/fiqhakbar_iso6.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus2/fiqhakbar_iso6.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_implicit_utf8.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_utf16be_bom.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_utf16le_bom.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_utf8_bom.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_utf8_bom.xml
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_utf8_bom2.txt
perl-5.22.1/cpan/Pod-Simple/t/corpus2/polish_utf8_bom2.xml
perl-5.22.1/cpan/Pod-Simple/t/emptylists.t
perl-5.22.1/cpan/Pod-Simple/t/enc-chars.t
perl-5.22.1/cpan/Pod-Simple/t/encod01.t
perl-5.22.1/cpan/Pod-Simple/t/encod02.t
perl-5.22.1/cpan/Pod-Simple/t/encod03.t
perl-5.22.1/cpan/Pod-Simple/t/encod04.t
perl-5.22.1/cpan/Pod-Simple/t/end_over.t
perl-5.22.1/cpan/Pod-Simple/t/eol.t
perl-5.22.1/cpan/Pod-Simple/t/eol2.t
perl-5.22.1/cpan/Pod-Simple/t/fake-closers.t
perl-5.22.1/cpan/Pod-Simple/t/fcodes.t
perl-5.22.1/cpan/Pod-Simple/t/fcodes_e.t
perl-5.22.1/cpan/Pod-Simple/t/fcodes_l.t
perl-5.22.1/cpan/Pod-Simple/t/fcodes_s.t
perl-5.22.1/cpan/Pod-Simple/t/for.t
perl-5.22.1/cpan/Pod-Simple/t/fornot.t
perl-5.22.1/cpan/Pod-Simple/t/heads.t
perl-5.22.1/cpan/Pod-Simple/t/html01.t
perl-5.22.1/cpan/Pod-Simple/t/html02.t
perl-5.22.1/cpan/Pod-Simple/t/html03.t
perl-5.22.1/cpan/Pod-Simple/t/htmlbat.t
perl-5.22.1/cpan/Pod-Simple/t/items.t
perl-5.22.1/cpan/Pod-Simple/t/items02.t
perl-5.22.1/cpan/Pod-Simple/t/itemstar.t
perl-5.22.1/cpan/Pod-Simple/t/junk1.pod
perl-5.22.1/cpan/Pod-Simple/t/junk1o.txt
perl-5.22.1/cpan/Pod-Simple/t/junk2.pod
perl-5.22.1/cpan/Pod-Simple/t/junk2o.txt
perl-5.22.1/cpan/Pod-Simple/t/linkclas.t
perl-5.22.1/cpan/Pod-Simple/t/output.t
perl-5.22.1/cpan/Pod-Simple/t/perlcyg.pod
perl-5.22.1/cpan/Pod-Simple/t/perlcygo.txt
perl-5.22.1/cpan/Pod-Simple/t/perlfaq.pod
perl-5.22.1/cpan/Pod-Simple/t/perlfaqo.txt
perl-5.22.1/cpan/Pod-Simple/t/perlvar.pod
perl-5.22.1/cpan/Pod-Simple/t/perlvaro.txt
perl-5.22.1/cpan/Pod-Simple/t/puller.t
perl-5.22.1/cpan/Pod-Simple/t/pulltitl.t
perl-5.22.1/cpan/Pod-Simple/t/reinit.t
perl-5.22.1/cpan/Pod-Simple/t/render.t
perl-5.22.1/cpan/Pod-Simple/t/search05.t
perl-5.22.1/cpan/Pod-Simple/t/search10.t
perl-5.22.1/cpan/Pod-Simple/t/search12.t
perl-5.22.1/cpan/Pod-Simple/t/search20.t
perl-5.22.1/cpan/Pod-Simple/t/search22.t
perl-5.22.1/cpan/Pod-Simple/t/search25.t
perl-5.22.1/cpan/Pod-Simple/t/search26.t
perl-5.22.1/cpan/Pod-Simple/t/search27.t
perl-5.22.1/cpan/Pod-Simple/t/search28.t
perl-5.22.1/cpan/Pod-Simple/t/search29.t
perl-5.22.1/cpan/Pod-Simple/t/search50.t
perl-5.22.1/cpan/Pod-Simple/t/stree.t
perl-5.22.1/cpan/Pod-Simple/t/strpvbtm.t
perl-5.22.1/cpan/Pod-Simple/t/testlib1/
perl-5.22.1/cpan/Pod-Simple/t/testlib1/Blorm.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib1/Zonk/
perl-5.22.1/cpan/Pod-Simple/t/testlib1/Zonk/Fiddle.txt
perl-5.22.1/cpan/Pod-Simple/t/testlib1/Zonk/Pronk.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib1/Zonk/Veng.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib1/hinkhonk/
perl-5.22.1/cpan/Pod-Simple/t/testlib1/hinkhonk/Glunk.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib1/hinkhonk/Vliff.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib1/hinkhonk/readme.txt
perl-5.22.1/cpan/Pod-Simple/t/testlib1/pod/
perl-5.22.1/cpan/Pod-Simple/t/testlib1/pod/perlflif.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib1/pod/perlthng.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib1/squaa/
perl-5.22.1/cpan/Pod-Simple/t/testlib1/squaa.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib1/squaa/Glunk.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib1/squaa/Vliff.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib1/zikzik.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib2/
perl-5.22.1/cpan/Pod-Simple/t/testlib2/Suzzle.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib2/hinkhonk/
perl-5.22.1/cpan/Pod-Simple/t/testlib2/hinkhonk/Glunk.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib2/hinkhonk/Vliff.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib2/hinkhonk/readme.txt
perl-5.22.1/cpan/Pod-Simple/t/testlib2/pod/
perl-5.22.1/cpan/Pod-Simple/t/testlib2/pod/perlthng.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib2/pod/perlzuk.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib2/squaa/
perl-5.22.1/cpan/Pod-Simple/t/testlib2/squaa/Vliff.pm
perl-5.22.1/cpan/Pod-Simple/t/testlib2/squaa/Wowo.pod
perl-5.22.1/cpan/Pod-Simple/t/testlib3/
perl-5.22.1/cpan/Pod-Simple/t/testlib3/squaa/
perl-5.22.1/cpan/Pod-Simple/t/testlib3/squaa/Vliff.pm
perl-5.22.1/cpan/Pod-Simple/t/tiedfh.t
perl-5.22.1/cpan/Pod-Simple/t/verb_fmt.t
perl-5.22.1/cpan/Pod-Simple/t/verbatim.t
perl-5.22.1/cpan/Pod-Simple/t/whine.t
perl-5.22.1/cpan/Pod-Simple/t/x_nixer.t
perl-5.22.1/cpan/Pod-Simple/t/xhtml-bkb.t
perl-5.22.1/cpan/Pod-Simple/t/xhtml01.t
perl-5.22.1/cpan/Pod-Simple/t/xhtml05.t
perl-5.22.1/cpan/Pod-Simple/t/xhtml10.t
perl-5.22.1/cpan/Pod-Simple/t/xhtml15.t
perl-5.22.1/cpan/Pod-Simple/t/xhtml20.t
perl-5.22.1/cpan/Pod-Usage/
perl-5.22.1/cpan/Pod-Usage/lib/
perl-5.22.1/cpan/Pod-Usage/lib/Pod/
perl-5.22.1/cpan/Pod-Usage/lib/Pod/Usage.pm
perl-5.22.1/cpan/Pod-Usage/scripts/
perl-5.22.1/cpan/Pod-Usage/scripts/pod2usage.PL
perl-5.22.1/cpan/Pod-Usage/t/
perl-5.22.1/cpan/Pod-Usage/t/pod/
perl-5.22.1/cpan/Pod-Usage/t/pod/p2u_data.pl
perl-5.22.1/cpan/Pod-Usage/t/pod/pod2usage.t
perl-5.22.1/cpan/Pod-Usage/t/pod/pod2usage.xr
perl-5.22.1/cpan/Pod-Usage/t/pod/pod2usage2.t
perl-5.22.1/cpan/Pod-Usage/t/pod/testcmp.pl
perl-5.22.1/cpan/Pod-Usage/t/pod/testp2pt.pl
perl-5.22.1/cpan/Pod-Usage/t/pod/usage.pod
perl-5.22.1/cpan/Pod-Usage/t/pod/usage2.pod
perl-5.22.1/cpan/Scalar-List-Utils/
perl-5.22.1/cpan/Scalar-List-Utils/ListUtil.xs
perl-5.22.1/cpan/Scalar-List-Utils/Makefile.PL
perl-5.22.1/cpan/Scalar-List-Utils/lib/
perl-5.22.1/cpan/Scalar-List-Utils/lib/List/
perl-5.22.1/cpan/Scalar-List-Utils/lib/List/Util/
perl-5.22.1/cpan/Scalar-List-Utils/lib/List/Util.pm
perl-5.22.1/cpan/Scalar-List-Utils/lib/List/Util/XS.pm
perl-5.22.1/cpan/Scalar-List-Utils/lib/Scalar/
perl-5.22.1/cpan/Scalar-List-Utils/lib/Scalar/Util.pm
perl-5.22.1/cpan/Scalar-List-Utils/lib/Sub/
perl-5.22.1/cpan/Scalar-List-Utils/lib/Sub/Util.pm
perl-5.22.1/cpan/Scalar-List-Utils/multicall.h
perl-5.22.1/cpan/Scalar-List-Utils/t/
perl-5.22.1/cpan/Scalar-List-Utils/t/00version.t
perl-5.22.1/cpan/Scalar-List-Utils/t/any-all.t
perl-5.22.1/cpan/Scalar-List-Utils/t/blessed.t
perl-5.22.1/cpan/Scalar-List-Utils/t/dualvar.t
perl-5.22.1/cpan/Scalar-List-Utils/t/first.t
perl-5.22.1/cpan/Scalar-List-Utils/t/getmagic-once.t
perl-5.22.1/cpan/Scalar-List-Utils/t/isvstring.t
perl-5.22.1/cpan/Scalar-List-Utils/t/lln.t
perl-5.22.1/cpan/Scalar-List-Utils/t/max.t
perl-5.22.1/cpan/Scalar-List-Utils/t/maxstr.t
perl-5.22.1/cpan/Scalar-List-Utils/t/min.t
perl-5.22.1/cpan/Scalar-List-Utils/t/minstr.t
perl-5.22.1/cpan/Scalar-List-Utils/t/openhan.t
perl-5.22.1/cpan/Scalar-List-Utils/t/pair.t
perl-5.22.1/cpan/Scalar-List-Utils/t/product.t
perl-5.22.1/cpan/Scalar-List-Utils/t/prototype.t
perl-5.22.1/cpan/Scalar-List-Utils/t/readonly.t
perl-5.22.1/cpan/Scalar-List-Utils/t/reduce.t
perl-5.22.1/cpan/Scalar-List-Utils/t/refaddr.t
perl-5.22.1/cpan/Scalar-List-Utils/t/reftype.t
perl-5.22.1/cpan/Scalar-List-Utils/t/scalarutil-proto.t
perl-5.22.1/cpan/Scalar-List-Utils/t/shuffle.t
perl-5.22.1/cpan/Scalar-List-Utils/t/stack-corruption.t
perl-5.22.1/cpan/Scalar-List-Utils/t/subname.t
perl-5.22.1/cpan/Scalar-List-Utils/t/sum.t
perl-5.22.1/cpan/Scalar-List-Utils/t/sum0.t
perl-5.22.1/cpan/Scalar-List-Utils/t/tainted.t
perl-5.22.1/cpan/Scalar-List-Utils/t/weak.t
perl-5.22.1/cpan/Socket/
perl-5.22.1/cpan/Socket/Makefile.PL
perl-5.22.1/cpan/Socket/Socket.pm
perl-5.22.1/cpan/Socket/Socket.xs
perl-5.22.1/cpan/Socket/t/
perl-5.22.1/cpan/Socket/t/Socket.t
perl-5.22.1/cpan/Socket/t/getaddrinfo.t
perl-5.22.1/cpan/Socket/t/getnameinfo.t
perl-5.22.1/cpan/Socket/t/ip_mreq.t
perl-5.22.1/cpan/Socket/t/ipv6_mreq.t
perl-5.22.1/cpan/Socket/t/sockaddr.t
perl-5.22.1/cpan/Socket/t/socketpair.t
perl-5.22.1/cpan/Socket/typemap
perl-5.22.1/cpan/Sys-Syslog/
perl-5.22.1/cpan/Sys-Syslog/Makefile.PL
perl-5.22.1/cpan/Sys-Syslog/Syslog.pm
perl-5.22.1/cpan/Sys-Syslog/Syslog.xs
perl-5.22.1/cpan/Sys-Syslog/fallback/
perl-5.22.1/cpan/Sys-Syslog/fallback/const-c.inc
perl-5.22.1/cpan/Sys-Syslog/fallback/const-xs.inc
perl-5.22.1/cpan/Sys-Syslog/fallback/syslog.h
perl-5.22.1/cpan/Sys-Syslog/t/
perl-5.22.1/cpan/Sys-Syslog/t/00-load.t
perl-5.22.1/cpan/Sys-Syslog/t/constants.t
perl-5.22.1/cpan/Sys-Syslog/t/facilities-routing.t
perl-5.22.1/cpan/Sys-Syslog/t/syslog.t
perl-5.22.1/cpan/Sys-Syslog/win32/
perl-5.22.1/cpan/Sys-Syslog/win32/PerlLog.mc
perl-5.22.1/cpan/Sys-Syslog/win32/PerlLog_RES.uu
perl-5.22.1/cpan/Sys-Syslog/win32/PerlLog_dll.uu
perl-5.22.1/cpan/Sys-Syslog/win32/Win32.pm
perl-5.22.1/cpan/Sys-Syslog/win32/compile.pl
perl-5.22.1/cpan/Term-ANSIColor/
perl-5.22.1/cpan/Term-ANSIColor/lib/
perl-5.22.1/cpan/Term-ANSIColor/lib/Term/
perl-5.22.1/cpan/Term-ANSIColor/lib/Term/ANSIColor.pm
perl-5.22.1/cpan/Term-ANSIColor/t/
perl-5.22.1/cpan/Term-ANSIColor/t/lib/
perl-5.22.1/cpan/Term-ANSIColor/t/lib/Test/
perl-5.22.1/cpan/Term-ANSIColor/t/lib/Test/RRA/
perl-5.22.1/cpan/Term-ANSIColor/t/lib/Test/RRA.pm
perl-5.22.1/cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm
perl-5.22.1/cpan/Term-ANSIColor/t/module/
perl-5.22.1/cpan/Term-ANSIColor/t/module/aliases-func.t
perl-5.22.1/cpan/Term-ANSIColor/t/module/basic.t
perl-5.22.1/cpan/Term-ANSIColor/t/module/basic256.t
perl-5.22.1/cpan/Term-ANSIColor/t/module/eval.t
perl-5.22.1/cpan/Term-ANSIColor/t/module/stringify.t
perl-5.22.1/cpan/Term-ANSIColor/t/taint/
perl-5.22.1/cpan/Term-ANSIColor/t/taint/basic.t
perl-5.22.1/cpan/Term-Cap/
perl-5.22.1/cpan/Term-Cap/Cap.pm
perl-5.22.1/cpan/Term-Cap/test.pl
perl-5.22.1/cpan/Test/
perl-5.22.1/cpan/Test-Harness/
perl-5.22.1/cpan/Test-Harness/bin/
perl-5.22.1/cpan/Test-Harness/bin/prove
perl-5.22.1/cpan/Test-Harness/lib/
perl-5.22.1/cpan/Test-Harness/lib/App/
perl-5.22.1/cpan/Test-Harness/lib/App/Prove/
perl-5.22.1/cpan/Test-Harness/lib/App/Prove.pm
perl-5.22.1/cpan/Test-Harness/lib/App/Prove/State/
perl-5.22.1/cpan/Test-Harness/lib/App/Prove/State.pm
perl-5.22.1/cpan/Test-Harness/lib/App/Prove/State/Result/
perl-5.22.1/cpan/Test-Harness/lib/App/Prove/State/Result.pm
perl-5.22.1/cpan/Test-Harness/lib/App/Prove/State/Result/Test.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Base.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Base.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Color.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Console/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Console.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Console/ParallelSession.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Console/Session.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/File/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/File.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/File/Session.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Formatter/Session.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Harness/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Harness.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Harness/Beyond.pod
perl-5.22.1/cpan/Test-Harness/lib/TAP/Harness/Env.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Object.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Aggregator.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Grammar.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Iterator/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Iterator.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Iterator/Array.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Iterator/Process.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Iterator/Stream.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/IteratorFactory.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Multiplexer.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Bailout.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Comment.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Plan.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Pragma.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Test.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Unknown.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/Version.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Result/YAML.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/ResultFactory.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Scheduler/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Scheduler/Job.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Scheduler/Spinner.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/Source.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Executable.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/File.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Handle.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Perl.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/RawTAP.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/YAMLish/
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm
perl-5.22.1/cpan/Test-Harness/lib/TAP/Parser/YAMLish/Writer.pm
perl-5.22.1/cpan/Test-Harness/lib/Test/
perl-5.22.1/cpan/Test-Harness/lib/Test/Harness.pm
perl-5.22.1/cpan/Test-Harness/t/
perl-5.22.1/cpan/Test-Harness/t/aggregator.t
perl-5.22.1/cpan/Test-Harness/t/bailout.t
perl-5.22.1/cpan/Test-Harness/t/base.t
perl-5.22.1/cpan/Test-Harness/t/callbacks.t
perl-5.22.1/cpan/Test-Harness/t/compat/
perl-5.22.1/cpan/Test-Harness/t/compat/env.t
perl-5.22.1/cpan/Test-Harness/t/compat/env_opts.t
perl-5.22.1/cpan/Test-Harness/t/compat/failure.t
perl-5.22.1/cpan/Test-Harness/t/compat/inc-propagation.t
perl-5.22.1/cpan/Test-Harness/t/compat/inc_taint.t
perl-5.22.1/cpan/Test-Harness/t/compat/nonumbers.t
perl-5.22.1/cpan/Test-Harness/t/compat/regression.t
perl-5.22.1/cpan/Test-Harness/t/compat/subclass.t
perl-5.22.1/cpan/Test-Harness/t/compat/switches.t
perl-5.22.1/cpan/Test-Harness/t/compat/test-harness-compat.t
perl-5.22.1/cpan/Test-Harness/t/compat/version.t
perl-5.22.1/cpan/Test-Harness/t/console.t
perl-5.22.1/cpan/Test-Harness/t/data/
perl-5.22.1/cpan/Test-Harness/t/data/catme.1
perl-5.22.1/cpan/Test-Harness/t/data/proverc
perl-5.22.1/cpan/Test-Harness/t/data/sample.yml
perl-5.22.1/cpan/Test-Harness/t/errors.t
perl-5.22.1/cpan/Test-Harness/t/file.t
perl-5.22.1/cpan/Test-Harness/t/glob-to-regexp.t
perl-5.22.1/cpan/Test-Harness/t/grammar.t
perl-5.22.1/cpan/Test-Harness/t/harness-bailout.t
perl-5.22.1/cpan/Test-Harness/t/harness-subclass.t
perl-5.22.1/cpan/Test-Harness/t/harness.t
perl-5.22.1/cpan/Test-Harness/t/iterator_factory.t
perl-5.22.1/cpan/Test-Harness/t/iterators.t
perl-5.22.1/cpan/Test-Harness/t/lib/
perl-5.22.1/cpan/Test-Harness/t/lib/App/
perl-5.22.1/cpan/Test-Harness/t/lib/App/Prove/
perl-5.22.1/cpan/Test-Harness/t/lib/App/Prove/Plugin/
perl-5.22.1/cpan/Test-Harness/t/lib/App/Prove/Plugin/Dummy.pm
perl-5.22.1/cpan/Test-Harness/t/lib/App/Prove/Plugin/Dummy2.pm
perl-5.22.1/cpan/Test-Harness/t/lib/Dev/
perl-5.22.1/cpan/Test-Harness/t/lib/Dev/Null.pm
perl-5.22.1/cpan/Test-Harness/t/lib/EmptyParser.pm
perl-5.22.1/cpan/Test-Harness/t/lib/IO/
perl-5.22.1/cpan/Test-Harness/t/lib/IO/c55Capture.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyCustom.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyFileSourceHandler.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyGrammar.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyIterator.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyPerlSourceHandler.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyResult.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MyResultFactory.pm
perl-5.22.1/cpan/Test-Harness/t/lib/MySourceHandler.pm
perl-5.22.1/cpan/Test-Harness/t/lib/NOP.pm
perl-5.22.1/cpan/Test-Harness/t/lib/NoFork.pm
perl-5.22.1/cpan/Test-Harness/t/lib/TAP/
perl-5.22.1/cpan/Test-Harness/t/lib/TAP/Harness/
perl-5.22.1/cpan/Test-Harness/t/lib/TAP/Harness/TestSubclass.pm
perl-5.22.1/cpan/Test-Harness/t/lib/TAP/Parser/
perl-5.22.1/cpan/Test-Harness/t/lib/TAP/Parser/SubclassTest.pm
perl-5.22.1/cpan/Test-Harness/t/multiplexer.t
perl-5.22.1/cpan/Test-Harness/t/nested.t
perl-5.22.1/cpan/Test-Harness/t/nofork-mux.t
perl-5.22.1/cpan/Test-Harness/t/nofork.t
perl-5.22.1/cpan/Test-Harness/t/object.t
perl-5.22.1/cpan/Test-Harness/t/parse.t
perl-5.22.1/cpan/Test-Harness/t/parser-config.t
perl-5.22.1/cpan/Test-Harness/t/parser-subclass.t
perl-5.22.1/cpan/Test-Harness/t/perl5lib.t
perl-5.22.1/cpan/Test-Harness/t/premature-bailout.t
perl-5.22.1/cpan/Test-Harness/t/process.t
perl-5.22.1/cpan/Test-Harness/t/prove.t
perl-5.22.1/cpan/Test-Harness/t/proverc/
perl-5.22.1/cpan/Test-Harness/t/proverc.t
perl-5.22.1/cpan/Test-Harness/t/proverc/emptyexec
perl-5.22.1/cpan/Test-Harness/t/proverun.t
perl-5.22.1/cpan/Test-Harness/t/proveversion.t
perl-5.22.1/cpan/Test-Harness/t/regression.t
perl-5.22.1/cpan/Test-Harness/t/results.t
perl-5.22.1/cpan/Test-Harness/t/sample-tests/
perl-5.22.1/cpan/Test-Harness/t/sample-tests/bailout
perl-5.22.1/cpan/Test-Harness/t/sample-tests/bignum
perl-5.22.1/cpan/Test-Harness/t/sample-tests/bignum_many
perl-5.22.1/cpan/Test-Harness/t/sample-tests/combined
perl-5.22.1/cpan/Test-Harness/t/sample-tests/combined_compat
perl-5.22.1/cpan/Test-Harness/t/sample-tests/delayed
perl-5.22.1/cpan/Test-Harness/t/sample-tests/descriptive
perl-5.22.1/cpan/Test-Harness/t/sample-tests/descriptive_trailing
perl-5.22.1/cpan/Test-Harness/t/sample-tests/die
perl-5.22.1/cpan/Test-Harness/t/sample-tests/die_head_end
perl-5.22.1/cpan/Test-Harness/t/sample-tests/die_last_minute
perl-5.22.1/cpan/Test-Harness/t/sample-tests/die_unfinished
perl-5.22.1/cpan/Test-Harness/t/sample-tests/duplicates
perl-5.22.1/cpan/Test-Harness/t/sample-tests/echo
perl-5.22.1/cpan/Test-Harness/t/sample-tests/empty
perl-5.22.1/cpan/Test-Harness/t/sample-tests/escape_eol
perl-5.22.1/cpan/Test-Harness/t/sample-tests/escape_hash
perl-5.22.1/cpan/Test-Harness/t/sample-tests/head_end
perl-5.22.1/cpan/Test-Harness/t/sample-tests/head_fail
perl-5.22.1/cpan/Test-Harness/t/sample-tests/inc_taint
perl-5.22.1/cpan/Test-Harness/t/sample-tests/junk_before_plan
perl-5.22.1/cpan/Test-Harness/t/sample-tests/lone_not_bug
perl-5.22.1/cpan/Test-Harness/t/sample-tests/no_nums
perl-5.22.1/cpan/Test-Harness/t/sample-tests/no_output
perl-5.22.1/cpan/Test-Harness/t/sample-tests/out_err_mix
perl-5.22.1/cpan/Test-Harness/t/sample-tests/out_of_order
perl-5.22.1/cpan/Test-Harness/t/sample-tests/schwern
perl-5.22.1/cpan/Test-Harness/t/sample-tests/schwern-todo-quiet
perl-5.22.1/cpan/Test-Harness/t/sample-tests/segfault
perl-5.22.1/cpan/Test-Harness/t/sample-tests/sequence_misparse
perl-5.22.1/cpan/Test-Harness/t/sample-tests/shbang_misparse
perl-5.22.1/cpan/Test-Harness/t/sample-tests/simple
perl-5.22.1/cpan/Test-Harness/t/sample-tests/simple_fail
perl-5.22.1/cpan/Test-Harness/t/sample-tests/simple_yaml
perl-5.22.1/cpan/Test-Harness/t/sample-tests/simple_yaml_missing_version13
perl-5.22.1/cpan/Test-Harness/t/sample-tests/skip
perl-5.22.1/cpan/Test-Harness/t/sample-tests/skip_nomsg
perl-5.22.1/cpan/Test-Harness/t/sample-tests/skipall
perl-5.22.1/cpan/Test-Harness/t/sample-tests/skipall_nomsg
perl-5.22.1/cpan/Test-Harness/t/sample-tests/skipall_v13
perl-5.22.1/cpan/Test-Harness/t/sample-tests/space_after_plan
perl-5.22.1/cpan/Test-Harness/t/sample-tests/stdout_stderr
perl-5.22.1/cpan/Test-Harness/t/sample-tests/strict
perl-5.22.1/cpan/Test-Harness/t/sample-tests/switches
perl-5.22.1/cpan/Test-Harness/t/sample-tests/taint
perl-5.22.1/cpan/Test-Harness/t/sample-tests/taint_warn
perl-5.22.1/cpan/Test-Harness/t/sample-tests/todo
perl-5.22.1/cpan/Test-Harness/t/sample-tests/todo_inline
perl-5.22.1/cpan/Test-Harness/t/sample-tests/todo_misparse
perl-5.22.1/cpan/Test-Harness/t/sample-tests/too_many
perl-5.22.1/cpan/Test-Harness/t/sample-tests/version_good
perl-5.22.1/cpan/Test-Harness/t/sample-tests/version_late
perl-5.22.1/cpan/Test-Harness/t/sample-tests/version_old
perl-5.22.1/cpan/Test-Harness/t/sample-tests/vms_nit
perl-5.22.1/cpan/Test-Harness/t/sample-tests/with_comments
perl-5.22.1/cpan/Test-Harness/t/sample-tests/yaml_late_plan
perl-5.22.1/cpan/Test-Harness/t/sample-tests/zero_valid
perl-5.22.1/cpan/Test-Harness/t/scheduler.t
perl-5.22.1/cpan/Test-Harness/t/source.t
perl-5.22.1/cpan/Test-Harness/t/source_handler.t
perl-5.22.1/cpan/Test-Harness/t/source_tests/
perl-5.22.1/cpan/Test-Harness/t/source_tests/harness
perl-5.22.1/cpan/Test-Harness/t/source_tests/harness_badtap
perl-5.22.1/cpan/Test-Harness/t/source_tests/harness_complain
perl-5.22.1/cpan/Test-Harness/t/source_tests/harness_directives
perl-5.22.1/cpan/Test-Harness/t/source_tests/harness_failure
perl-5.22.1/cpan/Test-Harness/t/source_tests/psql.bat
perl-5.22.1/cpan/Test-Harness/t/source_tests/source
perl-5.22.1/cpan/Test-Harness/t/source_tests/source.1
perl-5.22.1/cpan/Test-Harness/t/source_tests/source.bat
perl-5.22.1/cpan/Test-Harness/t/source_tests/source.pl
perl-5.22.1/cpan/Test-Harness/t/source_tests/source.sh
perl-5.22.1/cpan/Test-Harness/t/source_tests/source.t
perl-5.22.1/cpan/Test-Harness/t/source_tests/source.tap
perl-5.22.1/cpan/Test-Harness/t/source_tests/source_args.sh
perl-5.22.1/cpan/Test-Harness/t/spool.t
perl-5.22.1/cpan/Test-Harness/t/state.t
perl-5.22.1/cpan/Test-Harness/t/state_results.t
perl-5.22.1/cpan/Test-Harness/t/streams.t
perl-5.22.1/cpan/Test-Harness/t/subclass_tests/
perl-5.22.1/cpan/Test-Harness/t/subclass_tests/non_perl_source
perl-5.22.1/cpan/Test-Harness/t/subclass_tests/perl_source
perl-5.22.1/cpan/Test-Harness/t/taint.t
perl-5.22.1/cpan/Test-Harness/t/testargs.t
perl-5.22.1/cpan/Test-Harness/t/unicode.t
perl-5.22.1/cpan/Test-Harness/t/yamlish-output.t
perl-5.22.1/cpan/Test-Harness/t/yamlish-writer.t
perl-5.22.1/cpan/Test-Harness/t/yamlish.t
perl-5.22.1/cpan/Test-Simple/
perl-5.22.1/cpan/Test-Simple/lib/
perl-5.22.1/cpan/Test-Simple/lib/Test/
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/IO/
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/Module.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/Tester/
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/Tester.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/More.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Simple.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Tester/
perl-5.22.1/cpan/Test-Simple/lib/Test/Tester.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Tester/Capture.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Tester/Delegate.pm
perl-5.22.1/cpan/Test-Simple/lib/Test/Tutorial.pod
perl-5.22.1/cpan/Test-Simple/lib/Test/use/
perl-5.22.1/cpan/Test-Simple/lib/Test/use/ok.pm
perl-5.22.1/cpan/Test-Simple/lib/ok.pm
perl-5.22.1/cpan/Test-Simple/t/
perl-5.22.1/cpan/Test-Simple/t/00test_harness_check.t
perl-5.22.1/cpan/Test-Simple/t/01-basic.t
perl-5.22.1/cpan/Test-Simple/t/478-cmp_ok_hash.t
perl-5.22.1/cpan/Test-Simple/t/BEGIN_require_ok.t
perl-5.22.1/cpan/Test-Simple/t/BEGIN_use_ok.t
perl-5.22.1/cpan/Test-Simple/t/Builder/
perl-5.22.1/cpan/Test-Simple/t/Builder/Builder.t
perl-5.22.1/cpan/Test-Simple/t/Builder/carp.t
perl-5.22.1/cpan/Test-Simple/t/Builder/create.t
perl-5.22.1/cpan/Test-Simple/t/Builder/current_test.t
perl-5.22.1/cpan/Test-Simple/t/Builder/current_test_without_plan.t
perl-5.22.1/cpan/Test-Simple/t/Builder/details.t
perl-5.22.1/cpan/Test-Simple/t/Builder/done_testing.t
perl-5.22.1/cpan/Test-Simple/t/Builder/done_testing_double.t
perl-5.22.1/cpan/Test-Simple/t/Builder/done_testing_plan_mismatch.t
perl-5.22.1/cpan/Test-Simple/t/Builder/done_testing_with_no_plan.t
perl-5.22.1/cpan/Test-Simple/t/Builder/done_testing_with_number.t
perl-5.22.1/cpan/Test-Simple/t/Builder/done_testing_with_plan.t
perl-5.22.1/cpan/Test-Simple/t/Builder/fork_with_new_stdout.t
perl-5.22.1/cpan/Test-Simple/t/Builder/has_plan.t
perl-5.22.1/cpan/Test-Simple/t/Builder/has_plan2.t
perl-5.22.1/cpan/Test-Simple/t/Builder/is_fh.t
perl-5.22.1/cpan/Test-Simple/t/Builder/is_passing.t
perl-5.22.1/cpan/Test-Simple/t/Builder/maybe_regex.t
perl-5.22.1/cpan/Test-Simple/t/Builder/no_diag.t
perl-5.22.1/cpan/Test-Simple/t/Builder/no_ending.t
perl-5.22.1/cpan/Test-Simple/t/Builder/no_header.t
perl-5.22.1/cpan/Test-Simple/t/Builder/no_plan_at_all.t
perl-5.22.1/cpan/Test-Simple/t/Builder/ok_obj.t
perl-5.22.1/cpan/Test-Simple/t/Builder/output.t
perl-5.22.1/cpan/Test-Simple/t/Builder/reset.t
perl-5.22.1/cpan/Test-Simple/t/Builder/reset_outputs.t
perl-5.22.1/cpan/Test-Simple/t/Builder/try.t
perl-5.22.1/cpan/Test-Simple/t/More.t
perl-5.22.1/cpan/Test-Simple/t/MyTest.pm
perl-5.22.1/cpan/Test-Simple/t/Simple/
perl-5.22.1/cpan/Test-Simple/t/Simple/load.t
perl-5.22.1/cpan/Test-Simple/t/SmallTest.pm
perl-5.22.1/cpan/Test-Simple/t/Tester/
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_01basic.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_02fhrestore.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_03die.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_04line_num.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_05faildiag.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_06errormess.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_07args.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_08subtest.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_09do.t
perl-5.22.1/cpan/Test-Simple/t/Tester/tbt_09do_script.pl
perl-5.22.1/cpan/Test-Simple/t/auto.t
perl-5.22.1/cpan/Test-Simple/t/bad_plan.t
perl-5.22.1/cpan/Test-Simple/t/bail_out.t
perl-5.22.1/cpan/Test-Simple/t/buffer.t
perl-5.22.1/cpan/Test-Simple/t/c_flag.t
perl-5.22.1/cpan/Test-Simple/t/capture.t
perl-5.22.1/cpan/Test-Simple/t/check_tests.t
perl-5.22.1/cpan/Test-Simple/t/circular_data.t
perl-5.22.1/cpan/Test-Simple/t/cmp_ok.t
perl-5.22.1/cpan/Test-Simple/t/dependents.t
perl-5.22.1/cpan/Test-Simple/t/depth.t
perl-5.22.1/cpan/Test-Simple/t/diag.t
perl-5.22.1/cpan/Test-Simple/t/died.t
perl-5.22.1/cpan/Test-Simple/t/dont_overwrite_die_handler.t
perl-5.22.1/cpan/Test-Simple/t/eq_set.t
perl-5.22.1/cpan/Test-Simple/t/exit.t
perl-5.22.1/cpan/Test-Simple/t/explain.t
perl-5.22.1/cpan/Test-Simple/t/extra.t
perl-5.22.1/cpan/Test-Simple/t/extra_one.t
perl-5.22.1/cpan/Test-Simple/t/fail-like.t
perl-5.22.1/cpan/Test-Simple/t/fail-more.t
perl-5.22.1/cpan/Test-Simple/t/fail.t
perl-5.22.1/cpan/Test-Simple/t/fail_one.t
perl-5.22.1/cpan/Test-Simple/t/filehandles.t
perl-5.22.1/cpan/Test-Simple/t/fork.t
perl-5.22.1/cpan/Test-Simple/t/harness_active.t
perl-5.22.1/cpan/Test-Simple/t/import.t
perl-5.22.1/cpan/Test-Simple/t/is_deeply_dne_bug.t
perl-5.22.1/cpan/Test-Simple/t/is_deeply_fail.t
perl-5.22.1/cpan/Test-Simple/t/is_deeply_with_threads.t
perl-5.22.1/cpan/Test-Simple/t/lib/
perl-5.22.1/cpan/Test-Simple/t/lib/Dev/
perl-5.22.1/cpan/Test-Simple/t/lib/Dev/Null.pm
perl-5.22.1/cpan/Test-Simple/t/lib/Dummy.pm
perl-5.22.1/cpan/Test-Simple/t/lib/MyOverload.pm
perl-5.22.1/cpan/Test-Simple/t/lib/NoExporter.pm
perl-5.22.1/cpan/Test-Simple/t/lib/SigDie.pm
perl-5.22.1/cpan/Test-Simple/t/lib/Test/
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Builder/
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Builder/NoOutput.pm
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/Catch.pm
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/death.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/death_in_eval.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/death_with_handler.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/exit.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/extras.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/five_fail.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/last_minute_death.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/missing_done_testing.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/one_fail.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/one_fail_without_plan.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/pre_plan_death.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/require.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/success.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/too_few.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/too_few_fail.plx
perl-5.22.1/cpan/Test-Simple/t/lib/Test/Simple/sample_tests/two_fail.plx
perl-5.22.1/cpan/Test-Simple/t/lib/TieOut.pm
perl-5.22.1/cpan/Test-Simple/t/missing.t
perl-5.22.1/cpan/Test-Simple/t/new_ok.t
perl-5.22.1/cpan/Test-Simple/t/no_plan.t
perl-5.22.1/cpan/Test-Simple/t/no_tests.t
perl-5.22.1/cpan/Test-Simple/t/note.t
perl-5.22.1/cpan/Test-Simple/t/overload.t
perl-5.22.1/cpan/Test-Simple/t/overload_threads.t
perl-5.22.1/cpan/Test-Simple/t/plan.t
perl-5.22.1/cpan/Test-Simple/t/plan_bad.t
perl-5.22.1/cpan/Test-Simple/t/plan_is_noplan.t
perl-5.22.1/cpan/Test-Simple/t/plan_no_plan.t
perl-5.22.1/cpan/Test-Simple/t/plan_shouldnt_import.t
perl-5.22.1/cpan/Test-Simple/t/plan_skip_all.t
perl-5.22.1/cpan/Test-Simple/t/require_ok.t
perl-5.22.1/cpan/Test-Simple/t/run_test.t
perl-5.22.1/cpan/Test-Simple/t/simple.t
perl-5.22.1/cpan/Test-Simple/t/skip.t
perl-5.22.1/cpan/Test-Simple/t/skipall.t
perl-5.22.1/cpan/Test-Simple/t/subtest/
perl-5.22.1/cpan/Test-Simple/t/subtest/args.t
perl-5.22.1/cpan/Test-Simple/t/subtest/bail_out.t
perl-5.22.1/cpan/Test-Simple/t/subtest/basic.t
perl-5.22.1/cpan/Test-Simple/t/subtest/die.t
perl-5.22.1/cpan/Test-Simple/t/subtest/do.t
perl-5.22.1/cpan/Test-Simple/t/subtest/exceptions.t
perl-5.22.1/cpan/Test-Simple/t/subtest/for_do_t.test
perl-5.22.1/cpan/Test-Simple/t/subtest/fork.t
perl-5.22.1/cpan/Test-Simple/t/subtest/implicit_done.t
perl-5.22.1/cpan/Test-Simple/t/subtest/line_numbers.t
perl-5.22.1/cpan/Test-Simple/t/subtest/plan.t
perl-5.22.1/cpan/Test-Simple/t/subtest/predicate.t
perl-5.22.1/cpan/Test-Simple/t/subtest/singleton.t
perl-5.22.1/cpan/Test-Simple/t/subtest/threads.t
perl-5.22.1/cpan/Test-Simple/t/subtest/todo.t
perl-5.22.1/cpan/Test-Simple/t/subtest/wstat.t
perl-5.22.1/cpan/Test-Simple/t/tbm_doesnt_set_exported_to.t
perl-5.22.1/cpan/Test-Simple/t/thread_taint.t
perl-5.22.1/cpan/Test-Simple/t/threads.t
perl-5.22.1/cpan/Test-Simple/t/todo.t
perl-5.22.1/cpan/Test-Simple/t/undef.t
perl-5.22.1/cpan/Test-Simple/t/use_ok.t
perl-5.22.1/cpan/Test-Simple/t/useing.t
perl-5.22.1/cpan/Test-Simple/t/utf8.t
perl-5.22.1/cpan/Test-Simple/t/versions.t
perl-5.22.1/cpan/Test/lib/
perl-5.22.1/cpan/Test/lib/Test.pm
perl-5.22.1/cpan/Test/t/
perl-5.22.1/cpan/Test/t/05_about_verbose.t
perl-5.22.1/cpan/Test/t/fail.t
perl-5.22.1/cpan/Test/t/mix.t
perl-5.22.1/cpan/Test/t/multiline.t
perl-5.22.1/cpan/Test/t/onfail.t
perl-5.22.1/cpan/Test/t/qr.t
perl-5.22.1/cpan/Test/t/skip.t
perl-5.22.1/cpan/Test/t/success.t
perl-5.22.1/cpan/Test/t/todo.t
perl-5.22.1/cpan/Text-Balanced/
perl-5.22.1/cpan/Text-Balanced/lib/
perl-5.22.1/cpan/Text-Balanced/lib/Text/
perl-5.22.1/cpan/Text-Balanced/lib/Text/Balanced.pm
perl-5.22.1/cpan/Text-Balanced/t/
perl-5.22.1/cpan/Text-Balanced/t/01_compile.t
perl-5.22.1/cpan/Text-Balanced/t/02_extbrk.t
perl-5.22.1/cpan/Text-Balanced/t/03_extcbk.t
perl-5.22.1/cpan/Text-Balanced/t/04_extdel.t
perl-5.22.1/cpan/Text-Balanced/t/05_extmul.t
perl-5.22.1/cpan/Text-Balanced/t/06_extqlk.t
perl-5.22.1/cpan/Text-Balanced/t/07_exttag.t
perl-5.22.1/cpan/Text-Balanced/t/08_extvar.t
perl-5.22.1/cpan/Text-Balanced/t/09_gentag.t
perl-5.22.1/cpan/Text-ParseWords/
perl-5.22.1/cpan/Text-ParseWords/lib/
perl-5.22.1/cpan/Text-ParseWords/lib/Text/
perl-5.22.1/cpan/Text-ParseWords/lib/Text/ParseWords.pm
perl-5.22.1/cpan/Text-ParseWords/t/
perl-5.22.1/cpan/Text-ParseWords/t/ParseWords.t
perl-5.22.1/cpan/Text-ParseWords/t/taint.t
perl-5.22.1/cpan/Text-Tabs/
perl-5.22.1/cpan/Text-Tabs/lib/
perl-5.22.1/cpan/Text-Tabs/lib/Text/
perl-5.22.1/cpan/Text-Tabs/lib/Text/Tabs.pm
perl-5.22.1/cpan/Text-Tabs/lib/Text/Wrap.pm
perl-5.22.1/cpan/Text-Tabs/t/
perl-5.22.1/cpan/Text-Tabs/t/37000.t
perl-5.22.1/cpan/Text-Tabs/t/39548.t
perl-5.22.1/cpan/Text-Tabs/t/79766.t
perl-5.22.1/cpan/Text-Tabs/t/Jacobson.t
perl-5.22.1/cpan/Text-Tabs/t/Jacobson2.t
perl-5.22.1/cpan/Text-Tabs/t/Jochen.t
perl-5.22.1/cpan/Text-Tabs/t/Tabs-ElCid.t
perl-5.22.1/cpan/Text-Tabs/t/Wrap-JLB.t
perl-5.22.1/cpan/Text-Tabs/t/belg4mit.t
perl-5.22.1/cpan/Text-Tabs/t/dandv.t
perl-5.22.1/cpan/Text-Tabs/t/fill.t
perl-5.22.1/cpan/Text-Tabs/t/sep.t
perl-5.22.1/cpan/Text-Tabs/t/sep2.t
perl-5.22.1/cpan/Text-Tabs/t/tabs.t
perl-5.22.1/cpan/Text-Tabs/t/wrap.t
perl-5.22.1/cpan/Text-Tabs/t/wrap_separator2.t
perl-5.22.1/cpan/Tie-RefHash/
perl-5.22.1/cpan/Tie-RefHash/lib/
perl-5.22.1/cpan/Tie-RefHash/lib/Tie/
perl-5.22.1/cpan/Tie-RefHash/lib/Tie/RefHash.pm
perl-5.22.1/cpan/Tie-RefHash/t/
perl-5.22.1/cpan/Tie-RefHash/t/rebless.t
perl-5.22.1/cpan/Tie-RefHash/t/refhash.t
perl-5.22.1/cpan/Tie-RefHash/t/storable.t
perl-5.22.1/cpan/Tie-RefHash/t/threaded.t
perl-5.22.1/cpan/Time-HiRes/
perl-5.22.1/cpan/Time-HiRes/HiRes.pm
perl-5.22.1/cpan/Time-HiRes/HiRes.xs
perl-5.22.1/cpan/Time-HiRes/Makefile.PL
perl-5.22.1/cpan/Time-HiRes/fallback/
perl-5.22.1/cpan/Time-HiRes/fallback/const-c.inc
perl-5.22.1/cpan/Time-HiRes/fallback/const-xs.inc
perl-5.22.1/cpan/Time-HiRes/hints/
perl-5.22.1/cpan/Time-HiRes/hints/aix.pl
perl-5.22.1/cpan/Time-HiRes/hints/dec_osf.pl
perl-5.22.1/cpan/Time-HiRes/hints/dynixptx.pl
perl-5.22.1/cpan/Time-HiRes/hints/irix.pl
perl-5.22.1/cpan/Time-HiRes/hints/linux.pl
perl-5.22.1/cpan/Time-HiRes/hints/sco.pl
perl-5.22.1/cpan/Time-HiRes/hints/solaris.pl
perl-5.22.1/cpan/Time-HiRes/hints/svr4.pl
perl-5.22.1/cpan/Time-HiRes/t/
perl-5.22.1/cpan/Time-HiRes/t/Watchdog.pm
perl-5.22.1/cpan/Time-HiRes/t/alarm.t
perl-5.22.1/cpan/Time-HiRes/t/clock.t
perl-5.22.1/cpan/Time-HiRes/t/gettimeofday.t
perl-5.22.1/cpan/Time-HiRes/t/itimer.t
perl-5.22.1/cpan/Time-HiRes/t/nanosleep.t
perl-5.22.1/cpan/Time-HiRes/t/sleep.t
perl-5.22.1/cpan/Time-HiRes/t/stat.t
perl-5.22.1/cpan/Time-HiRes/t/time.t
perl-5.22.1/cpan/Time-HiRes/t/tv_interval.t
perl-5.22.1/cpan/Time-HiRes/t/ualarm.t
perl-5.22.1/cpan/Time-HiRes/t/usleep.t
perl-5.22.1/cpan/Time-HiRes/typemap
perl-5.22.1/cpan/Time-Local/
perl-5.22.1/cpan/Time-Local/lib/
perl-5.22.1/cpan/Time-Local/lib/Time/
perl-5.22.1/cpan/Time-Local/lib/Time/Local.pm
perl-5.22.1/cpan/Time-Local/t/
perl-5.22.1/cpan/Time-Local/t/Local.t
perl-5.22.1/cpan/Time-Piece/
perl-5.22.1/cpan/Time-Piece/Piece.pm
perl-5.22.1/cpan/Time-Piece/Piece.xs
perl-5.22.1/cpan/Time-Piece/Seconds.pm
perl-5.22.1/cpan/Time-Piece/t/
perl-5.22.1/cpan/Time-Piece/t/01base.t
perl-5.22.1/cpan/Time-Piece/t/02core.t
perl-5.22.1/cpan/Time-Piece/t/03compare.t
perl-5.22.1/cpan/Time-Piece/t/04mjd.t
perl-5.22.1/cpan/Time-Piece/t/05overload.t
perl-5.22.1/cpan/Time-Piece/t/06subclass.t
perl-5.22.1/cpan/Time-Piece/t/07arith.t
perl-5.22.1/cpan/Unicode-Collate/
perl-5.22.1/cpan/Unicode-Collate/Collate/
perl-5.22.1/cpan/Unicode-Collate/Collate.pm
perl-5.22.1/cpan/Unicode-Collate/Collate.xs
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/Big5.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/GB2312.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/JISX0208.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/Korean.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/Pinyin.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/Stroke.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/CJK/Zhuyin.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale.pm
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/af.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ar.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/as.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/az.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/be.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/bg.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/bn.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ca.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/cs.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/cy.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/da.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/de_phone.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ee.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/eo.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/es.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/es_trad.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/et.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/fa.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/fi.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/fi_phone.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/fil.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/fo.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/fr.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/gu.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ha.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/haw.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/hi.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/hr.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/hu.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/hy.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ig.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/is.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ja.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/kk.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/kl.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/kn.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ko.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/kok.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ln.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/lt.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/lv.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/mk.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ml.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/mr.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/mt.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/nb.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/nn.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/nso.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/om.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/or.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/pa.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/pl.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ro.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ru.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sa.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/se.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/si.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/si_dict.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sk.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sl.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sq.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sr.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sv.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/sv_refo.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ta.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/te.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/th.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/tn.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/to.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/tr.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/uk.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/ur.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/vi.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/wae.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/wo.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/yo.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/zh.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/zh_big5.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/zh_gb.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/zh_pin.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/zh_strk.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/Locale/zh_zhu.pl
perl-5.22.1/cpan/Unicode-Collate/Collate/allkeys.txt
perl-5.22.1/cpan/Unicode-Collate/Collate/keys.txt
perl-5.22.1/cpan/Unicode-Collate/Makefile.PL
perl-5.22.1/cpan/Unicode-Collate/mkheader
perl-5.22.1/cpan/Unicode-Collate/t/
perl-5.22.1/cpan/Unicode-Collate/t/altern.t
perl-5.22.1/cpan/Unicode-Collate/t/backwds.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_b5.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_gb.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_ja.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_ko.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_py.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_st.t
perl-5.22.1/cpan/Unicode-Collate/t/cjk_zy.t
perl-5.22.1/cpan/Unicode-Collate/t/cjkrange.t
perl-5.22.1/cpan/Unicode-Collate/t/compatui.t
perl-5.22.1/cpan/Unicode-Collate/t/contract.t
perl-5.22.1/cpan/Unicode-Collate/t/default.t
perl-5.22.1/cpan/Unicode-Collate/t/hangtype.t
perl-5.22.1/cpan/Unicode-Collate/t/hangul.t
perl-5.22.1/cpan/Unicode-Collate/t/ident.t
perl-5.22.1/cpan/Unicode-Collate/t/iglevel2.t
perl-5.22.1/cpan/Unicode-Collate/t/ignor.t
perl-5.22.1/cpan/Unicode-Collate/t/illegal.t
perl-5.22.1/cpan/Unicode-Collate/t/illegalp.t
perl-5.22.1/cpan/Unicode-Collate/t/index.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_af.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ar.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_as.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_az.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_be.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_bg.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_bn.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_bs.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_bscy.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ca.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_cjk.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_cjkc.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_cs.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_cy.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_cyrl.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_da.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_de.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_deph.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ee.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_eo.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_es.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_estr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_et.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_fa.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_fi.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_fil.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_fiph.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_fo.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_fr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_gu.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ha.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_haw.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_hi.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_hr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_hu.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_hy.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ig.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_is.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ja.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_jait.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_japr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_kk.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_kl.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_kn.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ko.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_kok.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ln.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_lt.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_lv.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_mk.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ml.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_mr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_mt.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_nb.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_nn.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_nso.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_om.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_or.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_pa.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_pl.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ro.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ru.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sa.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_se.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_si.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sidt.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sk.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sl.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sq.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_srla.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sv.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_svrf.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_sw.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ta.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_te.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_test.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_th.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_tn.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_to.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_tr.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_uk.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_ur.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_vi.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_wae.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_wo.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_yo.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_zh.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_zhb5.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_zhgb.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_zhpy.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_zhst.t
perl-5.22.1/cpan/Unicode-Collate/t/loc_zhzy.t
perl-5.22.1/cpan/Unicode-Collate/t/nonchar.t
perl-5.22.1/cpan/Unicode-Collate/t/normal.t
perl-5.22.1/cpan/Unicode-Collate/t/notable.t
perl-5.22.1/cpan/Unicode-Collate/t/overcjk0.t
perl-5.22.1/cpan/Unicode-Collate/t/overcjk1.t
perl-5.22.1/cpan/Unicode-Collate/t/override.t
perl-5.22.1/cpan/Unicode-Collate/t/rearrang.t
perl-5.22.1/cpan/Unicode-Collate/t/rewrite.t
perl-5.22.1/cpan/Unicode-Collate/t/test.t
perl-5.22.1/cpan/Unicode-Collate/t/trailwt.t
perl-5.22.1/cpan/Unicode-Collate/t/variable.t
perl-5.22.1/cpan/Unicode-Collate/t/version.t
perl-5.22.1/cpan/Unicode-Collate/t/view.t
perl-5.22.1/cpan/Unicode-Normalize/
perl-5.22.1/cpan/Unicode-Normalize/Makefile.PL
perl-5.22.1/cpan/Unicode-Normalize/Normalize.pm
perl-5.22.1/cpan/Unicode-Normalize/t/
perl-5.22.1/cpan/Unicode-Normalize/t/fcdc.t
perl-5.22.1/cpan/Unicode-Normalize/t/form.t
perl-5.22.1/cpan/Unicode-Normalize/t/func.t
perl-5.22.1/cpan/Unicode-Normalize/t/illegal.t
perl-5.22.1/cpan/Unicode-Normalize/t/norm.t
perl-5.22.1/cpan/Unicode-Normalize/t/null.t
perl-5.22.1/cpan/Unicode-Normalize/t/partial1.t
perl-5.22.1/cpan/Unicode-Normalize/t/partial2.t
perl-5.22.1/cpan/Unicode-Normalize/t/proto.t
perl-5.22.1/cpan/Unicode-Normalize/t/split.t
perl-5.22.1/cpan/Unicode-Normalize/t/test.t
perl-5.22.1/cpan/Unicode-Normalize/t/tie.t
perl-5.22.1/cpan/Win32/
perl-5.22.1/cpan/Win32/Makefile.PL
perl-5.22.1/cpan/Win32/Win32.pm
perl-5.22.1/cpan/Win32/Win32.xs
perl-5.22.1/cpan/Win32/longpath.inc
perl-5.22.1/cpan/Win32/t/
perl-5.22.1/cpan/Win32/t/CodePage.t
perl-5.22.1/cpan/Win32/t/CreateFile.t
perl-5.22.1/cpan/Win32/t/ExpandEnvironmentStrings.t
perl-5.22.1/cpan/Win32/t/GetCurrentThreadId.t
perl-5.22.1/cpan/Win32/t/GetFileVersion.t
perl-5.22.1/cpan/Win32/t/GetFolderPath.t
perl-5.22.1/cpan/Win32/t/GetFullPathName.t
perl-5.22.1/cpan/Win32/t/GetLongPathName.t
perl-5.22.1/cpan/Win32/t/GetOSName.t
perl-5.22.1/cpan/Win32/t/GetOSVersion.t
perl-5.22.1/cpan/Win32/t/GetShortPathName.t
perl-5.22.1/cpan/Win32/t/GuidGen.t
perl-5.22.1/cpan/Win32/t/Names.t
perl-5.22.1/cpan/Win32/t/Unicode.t
perl-5.22.1/cpan/Win32API-File/
perl-5.22.1/cpan/Win32API-File/ExtUtils/
perl-5.22.1/cpan/Win32API-File/ExtUtils/Myconst2perl.pm
perl-5.22.1/cpan/Win32API-File/File.pm
perl-5.22.1/cpan/Win32API-File/File.xs
perl-5.22.1/cpan/Win32API-File/Makefile.PL
perl-5.22.1/cpan/Win32API-File/buffers.h
perl-5.22.1/cpan/Win32API-File/cFile.h
perl-5.22.1/cpan/Win32API-File/cFile.pc
perl-5.22.1/cpan/Win32API-File/const2perl.h
perl-5.22.1/cpan/Win32API-File/t/
perl-5.22.1/cpan/Win32API-File/t/file.t
perl-5.22.1/cpan/Win32API-File/t/tie.t
perl-5.22.1/cpan/Win32API-File/typemap
perl-5.22.1/cpan/autodie/
perl-5.22.1/cpan/autodie/lib/
perl-5.22.1/cpan/autodie/lib/Fatal.pm
perl-5.22.1/cpan/autodie/lib/autodie/
perl-5.22.1/cpan/autodie/lib/autodie.pm
perl-5.22.1/cpan/autodie/lib/autodie/Scope/
perl-5.22.1/cpan/autodie/lib/autodie/Scope/Guard.pm
perl-5.22.1/cpan/autodie/lib/autodie/Scope/GuardStack.pm
perl-5.22.1/cpan/autodie/lib/autodie/ScopeUtil.pm
perl-5.22.1/cpan/autodie/lib/autodie/exception/
perl-5.22.1/cpan/autodie/lib/autodie/exception.pm
perl-5.22.1/cpan/autodie/lib/autodie/exception/system.pm
perl-5.22.1/cpan/autodie/lib/autodie/hints.pm
perl-5.22.1/cpan/autodie/lib/autodie/skip.pm
perl-5.22.1/cpan/autodie/t/
perl-5.22.1/cpan/autodie/t/00-load.t
perl-5.22.1/cpan/autodie/t/Fatal.t
perl-5.22.1/cpan/autodie/t/args.t
perl-5.22.1/cpan/autodie/t/autodie.t
perl-5.22.1/cpan/autodie/t/autodie_skippy.pm
perl-5.22.1/cpan/autodie/t/autodie_test_module.pm
perl-5.22.1/cpan/autodie/t/backcompat.t
perl-5.22.1/cpan/autodie/t/basic_exceptions.t
perl-5.22.1/cpan/autodie/t/binmode.t
perl-5.22.1/cpan/autodie/t/blog_hints.t
perl-5.22.1/cpan/autodie/t/caller.t
perl-5.22.1/cpan/autodie/t/chmod.t
perl-5.22.1/cpan/autodie/t/chown.t
perl-5.22.1/cpan/autodie/t/context.t
perl-5.22.1/cpan/autodie/t/context_lexical.t
perl-5.22.1/cpan/autodie/t/core-trampoline-slurp.t
perl-5.22.1/cpan/autodie/t/crickey.t
perl-5.22.1/cpan/autodie/t/dbmopen.t
perl-5.22.1/cpan/autodie/t/eval_error.t
perl-5.22.1/cpan/autodie/t/exception_class.t
perl-5.22.1/cpan/autodie/t/exceptions.t
perl-5.22.1/cpan/autodie/t/exec.t
perl-5.22.1/cpan/autodie/t/filehandles.t
perl-5.22.1/cpan/autodie/t/fileno.t
perl-5.22.1/cpan/autodie/t/flock.t
perl-5.22.1/cpan/autodie/t/format-clobber.t
perl-5.22.1/cpan/autodie/t/hints.t
perl-5.22.1/cpan/autodie/t/hints_insist.t
perl-5.22.1/cpan/autodie/t/hints_pod_examples.t
perl-5.22.1/cpan/autodie/t/hints_provider_does.t
perl-5.22.1/cpan/autodie/t/hints_provider_easy_does_it.t
perl-5.22.1/cpan/autodie/t/hints_provider_isa.t
perl-5.22.1/cpan/autodie/t/import-into.t
perl-5.22.1/cpan/autodie/t/internal-backcompat.t
perl-5.22.1/cpan/autodie/t/internal.t
perl-5.22.1/cpan/autodie/t/kill.t
perl-5.22.1/cpan/autodie/t/lethal.t
perl-5.22.1/cpan/autodie/t/lib/
perl-5.22.1/cpan/autodie/t/lib/Caller_helper.pm
perl-5.22.1/cpan/autodie/t/lib/Hints_pod_examples.pm
perl-5.22.1/cpan/autodie/t/lib/Hints_provider_does.pm
perl-5.22.1/cpan/autodie/t/lib/Hints_provider_easy_does_it.pm
perl-5.22.1/cpan/autodie/t/lib/Hints_provider_isa.pm
perl-5.22.1/cpan/autodie/t/lib/Hints_test.pm
perl-5.22.1/cpan/autodie/t/lib/OtherTypes.pm
perl-5.22.1/cpan/autodie/t/lib/Some/
perl-5.22.1/cpan/autodie/t/lib/Some/Module.pm
perl-5.22.1/cpan/autodie/t/lib/autodie/
perl-5.22.1/cpan/autodie/t/lib/autodie/test/
perl-5.22.1/cpan/autodie/t/lib/autodie/test/au/
perl-5.22.1/cpan/autodie/t/lib/autodie/test/au.pm
perl-5.22.1/cpan/autodie/t/lib/autodie/test/au/exception.pm
perl-5.22.1/cpan/autodie/t/lib/autodie/test/badname.pm
perl-5.22.1/cpan/autodie/t/lib/autodie/test/missing.pm
perl-5.22.1/cpan/autodie/t/lib/lethal.pm
perl-5.22.1/cpan/autodie/t/lib/my/
perl-5.22.1/cpan/autodie/t/lib/my/autodie.pm
perl-5.22.1/cpan/autodie/t/lib/my/pragma.pm
perl-5.22.1/cpan/autodie/t/lib/pujHa/
perl-5.22.1/cpan/autodie/t/lib/pujHa/ghach/
perl-5.22.1/cpan/autodie/t/lib/pujHa/ghach.pm
perl-5.22.1/cpan/autodie/t/lib/pujHa/ghach/Dotlh.pm
perl-5.22.1/cpan/autodie/t/mkdir.t
perl-5.22.1/cpan/autodie/t/no_carp.t
perl-5.22.1/cpan/autodie/t/open.t
perl-5.22.1/cpan/autodie/t/read.t
perl-5.22.1/cpan/autodie/t/recv.t
perl-5.22.1/cpan/autodie/t/repeat.t
perl-5.22.1/cpan/autodie/t/rt-74246.t
perl-5.22.1/cpan/autodie/t/scope_leak.t
perl-5.22.1/cpan/autodie/t/skip.t
perl-5.22.1/cpan/autodie/t/string-eval-basic.t
perl-5.22.1/cpan/autodie/t/string-eval-leak.t
perl-5.22.1/cpan/autodie/t/sysopen.t
perl-5.22.1/cpan/autodie/t/touch_me
perl-5.22.1/cpan/autodie/t/truncate.t
perl-5.22.1/cpan/autodie/t/unlink.t
perl-5.22.1/cpan/autodie/t/user-context.t
perl-5.22.1/cpan/autodie/t/usersub.t
perl-5.22.1/cpan/autodie/t/utf8_open.t
perl-5.22.1/cpan/autodie/t/utime.t
perl-5.22.1/cpan/autodie/t/version.t
perl-5.22.1/cpan/autodie/t/version_tag.t
perl-5.22.1/cpan/encoding-warnings/
perl-5.22.1/cpan/encoding-warnings/lib/
perl-5.22.1/cpan/encoding-warnings/lib/encoding/
perl-5.22.1/cpan/encoding-warnings/lib/encoding/warnings.pm
perl-5.22.1/cpan/encoding-warnings/t/
perl-5.22.1/cpan/encoding-warnings/t/1-warning.t
perl-5.22.1/cpan/encoding-warnings/t/2-fatal.t
perl-5.22.1/cpan/encoding-warnings/t/3-normal.t
perl-5.22.1/cpan/encoding-warnings/t/4-lexical.t
perl-5.22.1/cpan/experimental/
perl-5.22.1/cpan/experimental/lib/
perl-5.22.1/cpan/experimental/lib/experimental.pm
perl-5.22.1/cpan/experimental/t/
perl-5.22.1/cpan/experimental/t/basic.t
perl-5.22.1/cpan/libnet/
perl-5.22.1/cpan/libnet/Makefile.PL
perl-5.22.1/cpan/libnet/lib/
perl-5.22.1/cpan/libnet/lib/Net/
perl-5.22.1/cpan/libnet/lib/Net/Cmd.pm
perl-5.22.1/cpan/libnet/lib/Net/Config.pm
perl-5.22.1/cpan/libnet/lib/Net/Domain.pm
perl-5.22.1/cpan/libnet/lib/Net/FTP/
perl-5.22.1/cpan/libnet/lib/Net/FTP.pm
perl-5.22.1/cpan/libnet/lib/Net/FTP/A.pm
perl-5.22.1/cpan/libnet/lib/Net/FTP/E.pm
perl-5.22.1/cpan/libnet/lib/Net/FTP/I.pm
perl-5.22.1/cpan/libnet/lib/Net/FTP/L.pm
perl-5.22.1/cpan/libnet/lib/Net/FTP/dataconn.pm
perl-5.22.1/cpan/libnet/lib/Net/NNTP.pm
perl-5.22.1/cpan/libnet/lib/Net/Netrc.pm
perl-5.22.1/cpan/libnet/lib/Net/POP3.pm
perl-5.22.1/cpan/libnet/lib/Net/SMTP.pm
perl-5.22.1/cpan/libnet/lib/Net/Time.pm
perl-5.22.1/cpan/libnet/lib/Net/libnetFAQ.pod
perl-5.22.1/cpan/libnet/t/
perl-5.22.1/cpan/libnet/t/config.t
perl-5.22.1/cpan/libnet/t/datasend.t
perl-5.22.1/cpan/libnet/t/ftp.t
perl-5.22.1/cpan/libnet/t/hostname.t
perl-5.22.1/cpan/libnet/t/libnet_t.pl
perl-5.22.1/cpan/libnet/t/netrc.t
perl-5.22.1/cpan/libnet/t/nntp.t
perl-5.22.1/cpan/libnet/t/nntp_ipv6.t
perl-5.22.1/cpan/libnet/t/nntp_ssl.t
perl-5.22.1/cpan/libnet/t/pop3_ipv6.t
perl-5.22.1/cpan/libnet/t/pop3_ssl.t
perl-5.22.1/cpan/libnet/t/require.t
perl-5.22.1/cpan/libnet/t/smtp.t
perl-5.22.1/cpan/libnet/t/smtp_ipv6.t
perl-5.22.1/cpan/libnet/t/smtp_ssl.t
perl-5.22.1/cpan/libnet/t/time.t
perl-5.22.1/cpan/parent/
perl-5.22.1/cpan/parent/lib/
perl-5.22.1/cpan/parent/lib/parent.pm
perl-5.22.1/cpan/parent/t/
perl-5.22.1/cpan/parent/t/compile-time-file.t
perl-5.22.1/cpan/parent/t/compile-time.t
perl-5.22.1/cpan/parent/t/lib/
perl-5.22.1/cpan/parent/t/lib/Dummy/
perl-5.22.1/cpan/parent/t/lib/Dummy.pm
perl-5.22.1/cpan/parent/t/lib/Dummy/Outside.pm
perl-5.22.1/cpan/parent/t/lib/Dummy2.plugin
perl-5.22.1/cpan/parent/t/lib/FileThatOnlyExistsAsPMC.pmc
perl-5.22.1/cpan/parent/t/lib/ReturnsFalse.pm
perl-5.22.1/cpan/parent/t/parent-classfromclassfile.t
perl-5.22.1/cpan/parent/t/parent-classfromfile.t
perl-5.22.1/cpan/parent/t/parent-pmc.t
perl-5.22.1/cpan/parent/t/parent-returns-false.t
perl-5.22.1/cpan/parent/t/parent.t
perl-5.22.1/cpan/perlfaq/
perl-5.22.1/cpan/perlfaq/lib/
perl-5.22.1/cpan/perlfaq/lib/perlfaq.pm
perl-5.22.1/cpan/perlfaq/lib/perlfaq.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq1.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq2.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq3.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq4.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq5.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq6.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq7.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq8.pod
perl-5.22.1/cpan/perlfaq/lib/perlfaq9.pod
perl-5.22.1/cpan/perlfaq/lib/perlglossary.pod
perl-5.22.1/cpan/podlators/
perl-5.22.1/cpan/podlators/VERSION
perl-5.22.1/cpan/podlators/lib/
perl-5.22.1/cpan/podlators/lib/Pod/
perl-5.22.1/cpan/podlators/lib/Pod/Man.pm
perl-5.22.1/cpan/podlators/lib/Pod/ParseLink.pm
perl-5.22.1/cpan/podlators/lib/Pod/Text/
perl-5.22.1/cpan/podlators/lib/Pod/Text.pm
perl-5.22.1/cpan/podlators/lib/Pod/Text/Color.pm
perl-5.22.1/cpan/podlators/lib/Pod/Text/Overstrike.pm
perl-5.22.1/cpan/podlators/lib/Pod/Text/Termcap.pm
perl-5.22.1/cpan/podlators/scripts/
perl-5.22.1/cpan/podlators/scripts/pod2man.PL
perl-5.22.1/cpan/podlators/scripts/pod2text.PL
perl-5.22.1/cpan/podlators/t/
perl-5.22.1/cpan/podlators/t/basic.cap
perl-5.22.1/cpan/podlators/t/basic.clr
perl-5.22.1/cpan/podlators/t/basic.man
perl-5.22.1/cpan/podlators/t/basic.ovr
perl-5.22.1/cpan/podlators/t/basic.pod
perl-5.22.1/cpan/podlators/t/basic.t
perl-5.22.1/cpan/podlators/t/basic.txt
perl-5.22.1/cpan/podlators/t/color.t
perl-5.22.1/cpan/podlators/t/devise-date.t
perl-5.22.1/cpan/podlators/t/filehandle.t
perl-5.22.1/cpan/podlators/t/man-empty.t
perl-5.22.1/cpan/podlators/t/man-heading.t
perl-5.22.1/cpan/podlators/t/man-options.t
perl-5.22.1/cpan/podlators/t/man-perlio.t
perl-5.22.1/cpan/podlators/t/man-utf8.t
perl-5.22.1/cpan/podlators/t/man.t
perl-5.22.1/cpan/podlators/t/overstrike.t
perl-5.22.1/cpan/podlators/t/parselink.t
perl-5.22.1/cpan/podlators/t/pod-parser.t
perl-5.22.1/cpan/podlators/t/pod-spelling.t
perl-5.22.1/cpan/podlators/t/pod.t
perl-5.22.1/cpan/podlators/t/termcap.t
perl-5.22.1/cpan/podlators/t/text-empty.t
perl-5.22.1/cpan/podlators/t/text-encoding.t
perl-5.22.1/cpan/podlators/t/text-options.t
perl-5.22.1/cpan/podlators/t/text-perlio.t
perl-5.22.1/cpan/podlators/t/text-utf8.t
perl-5.22.1/cpan/podlators/t/text.t
perl-5.22.1/cpan/version/
perl-5.22.1/cpan/version/lib/
perl-5.22.1/cpan/version/lib/version/
perl-5.22.1/cpan/version/lib/version.pm
perl-5.22.1/cpan/version/lib/version.pod
perl-5.22.1/cpan/version/lib/version/Internals.pod
perl-5.22.1/cpan/version/lib/version/regex.pm
perl-5.22.1/cpan/version/lib/version/vpp.pm
perl-5.22.1/cpan/version/t/
perl-5.22.1/cpan/version/t/00impl-pp.t
perl-5.22.1/cpan/version/t/01base.t
perl-5.22.1/cpan/version/t/02derived.t
perl-5.22.1/cpan/version/t/03require.t
perl-5.22.1/cpan/version/t/04strict_lax.t
perl-5.22.1/cpan/version/t/05sigdie.t
perl-5.22.1/cpan/version/t/06noop.t
perl-5.22.1/cpan/version/t/07locale.t
perl-5.22.1/cpan/version/t/08_corelist.t
perl-5.22.1/cpan/version/t/09_list_util.t
perl-5.22.1/cpan/version/t/coretests.pm
perl-5.22.1/cv.h
perl-5.22.1/cygwin/
perl-5.22.1/cygwin/cygwin.c
perl-5.22.1/deb.c
perl-5.22.1/dist/
perl-5.22.1/dist/Attribute-Handlers/
perl-5.22.1/dist/Attribute-Handlers/Changes
perl-5.22.1/dist/Attribute-Handlers/demo/
perl-5.22.1/dist/Attribute-Handlers/demo/Demo.pm
perl-5.22.1/dist/Attribute-Handlers/demo/Descriptions.pm
perl-5.22.1/dist/Attribute-Handlers/demo/MyClass.pm
perl-5.22.1/dist/Attribute-Handlers/demo/demo.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo2.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo3.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo4.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_call.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_chain.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_cycle.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_hashdir.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_phases.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_range.pl
perl-5.22.1/dist/Attribute-Handlers/demo/demo_rawdata.pl
perl-5.22.1/dist/Attribute-Handlers/lib/
perl-5.22.1/dist/Attribute-Handlers/lib/Attribute/
perl-5.22.1/dist/Attribute-Handlers/lib/Attribute/Handlers.pm
perl-5.22.1/dist/Attribute-Handlers/t/
perl-5.22.1/dist/Attribute-Handlers/t/constants.t
perl-5.22.1/dist/Attribute-Handlers/t/data_convert.t
perl-5.22.1/dist/Attribute-Handlers/t/linerep.t
perl-5.22.1/dist/Attribute-Handlers/t/multi.t
perl-5.22.1/dist/Carp/
perl-5.22.1/dist/Carp/Makefile.PL
perl-5.22.1/dist/Carp/lib/
perl-5.22.1/dist/Carp/lib/Carp/
perl-5.22.1/dist/Carp/lib/Carp.pm
perl-5.22.1/dist/Carp/lib/Carp/Heavy.pm
perl-5.22.1/dist/Carp/t/
perl-5.22.1/dist/Carp/t/Carp.t
perl-5.22.1/dist/Carp/t/Carp_overload.t
perl-5.22.1/dist/Carp/t/arg_regexp.t
perl-5.22.1/dist/Carp/t/arg_string.t
perl-5.22.1/dist/Carp/t/baduni.t
perl-5.22.1/dist/Carp/t/baduni_warnings.t
perl-5.22.1/dist/Carp/t/errno.t
perl-5.22.1/dist/Carp/t/heavy.t
perl-5.22.1/dist/Carp/t/heavy_mismatch.t
perl-5.22.1/dist/Carp/t/stash_deletion.t
perl-5.22.1/dist/Carp/t/swash.t
perl-5.22.1/dist/Carp/t/vivify_gv.t
perl-5.22.1/dist/Carp/t/vivify_stash.t
perl-5.22.1/dist/Carp/t/with_warnings.t
perl-5.22.1/dist/Data-Dumper/
perl-5.22.1/dist/Data-Dumper/Changes
perl-5.22.1/dist/Data-Dumper/Dumper.pm
perl-5.22.1/dist/Data-Dumper/Dumper.xs
perl-5.22.1/dist/Data-Dumper/Todo
perl-5.22.1/dist/Data-Dumper/t/
perl-5.22.1/dist/Data-Dumper/t/bless.t
perl-5.22.1/dist/Data-Dumper/t/bless_var_method.t
perl-5.22.1/dist/Data-Dumper/t/bugs.t
perl-5.22.1/dist/Data-Dumper/t/deparse.t
perl-5.22.1/dist/Data-Dumper/t/dumper.t
perl-5.22.1/dist/Data-Dumper/t/dumpperl.t
perl-5.22.1/dist/Data-Dumper/t/freezer.t
perl-5.22.1/dist/Data-Dumper/t/freezer_useperl.t
perl-5.22.1/dist/Data-Dumper/t/indent.t
perl-5.22.1/dist/Data-Dumper/t/lib/
perl-5.22.1/dist/Data-Dumper/t/lib/Testing.pm
perl-5.22.1/dist/Data-Dumper/t/misc.t
perl-5.22.1/dist/Data-Dumper/t/names.t
perl-5.22.1/dist/Data-Dumper/t/overload.t
perl-5.22.1/dist/Data-Dumper/t/pair.t
perl-5.22.1/dist/Data-Dumper/t/perl-74170.t
perl-5.22.1/dist/Data-Dumper/t/purity_deepcopy_maxdepth.t
perl-5.22.1/dist/Data-Dumper/t/qr.t
perl-5.22.1/dist/Data-Dumper/t/quotekeys.t
perl-5.22.1/dist/Data-Dumper/t/recurse.t
perl-5.22.1/dist/Data-Dumper/t/seen.t
perl-5.22.1/dist/Data-Dumper/t/sortkeys.t
perl-5.22.1/dist/Data-Dumper/t/sparseseen.t
perl-5.22.1/dist/Data-Dumper/t/terse.t
perl-5.22.1/dist/Data-Dumper/t/toaster.t
perl-5.22.1/dist/Data-Dumper/t/values.t
perl-5.22.1/dist/Devel-SelfStubber/
perl-5.22.1/dist/Devel-SelfStubber/lib/
perl-5.22.1/dist/Devel-SelfStubber/lib/Devel/
perl-5.22.1/dist/Devel-SelfStubber/lib/Devel/SelfStubber.pm
perl-5.22.1/dist/Devel-SelfStubber/t/
perl-5.22.1/dist/Devel-SelfStubber/t/Devel-SelfStubber.t
perl-5.22.1/dist/Dumpvalue/
perl-5.22.1/dist/Dumpvalue/lib/
perl-5.22.1/dist/Dumpvalue/lib/Dumpvalue.pm
perl-5.22.1/dist/Dumpvalue/t/
perl-5.22.1/dist/Dumpvalue/t/Dumpvalue.t
perl-5.22.1/dist/Env/
perl-5.22.1/dist/Env/lib/
perl-5.22.1/dist/Env/lib/Env.pm
perl-5.22.1/dist/Env/t/
perl-5.22.1/dist/Env/t/array.t
perl-5.22.1/dist/Env/t/env.t
perl-5.22.1/dist/Exporter/
perl-5.22.1/dist/Exporter/lib/
perl-5.22.1/dist/Exporter/lib/Exporter/
perl-5.22.1/dist/Exporter/lib/Exporter.pm
perl-5.22.1/dist/Exporter/lib/Exporter/Heavy.pm
perl-5.22.1/dist/Exporter/t/
perl-5.22.1/dist/Exporter/t/Exporter.t
perl-5.22.1/dist/Exporter/t/warn.t
perl-5.22.1/dist/ExtUtils-CBuilder/
perl-5.22.1/dist/ExtUtils-CBuilder/Changes
perl-5.22.1/dist/ExtUtils-CBuilder/LICENSE
perl-5.22.1/dist/ExtUtils-CBuilder/Makefile.PL
perl-5.22.1/dist/ExtUtils-CBuilder/README.patching
perl-5.22.1/dist/ExtUtils-CBuilder/README.release
perl-5.22.1/dist/ExtUtils-CBuilder/lib/
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/android.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
perl-5.22.1/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm
perl-5.22.1/dist/ExtUtils-CBuilder/t/
perl-5.22.1/dist/ExtUtils-CBuilder/t/00-have-compiler.t
perl-5.22.1/dist/ExtUtils-CBuilder/t/01-basic.t
perl-5.22.1/dist/ExtUtils-CBuilder/t/02-link.t
perl-5.22.1/dist/ExtUtils-CBuilder/t/03-cplusplus.t
perl-5.22.1/dist/ExtUtils-CBuilder/t/04-base.t
perl-5.22.1/dist/ExtUtils-ParseXS/
perl-5.22.1/dist/ExtUtils-ParseXS/Changes
perl-5.22.1/dist/ExtUtils-ParseXS/lib/
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pod
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Constants.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Eval.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/Cmd.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/InputMap.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/OutputMap.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps/Type.pm
perl-5.22.1/dist/ExtUtils-ParseXS/lib/ExtUtils/xsubpp
perl-5.22.1/dist/ExtUtils-ParseXS/lib/perlxs.pod
perl-5.22.1/dist/ExtUtils-ParseXS/lib/perlxstut.pod
perl-5.22.1/dist/ExtUtils-ParseXS/lib/perlxstypemap.pod
perl-5.22.1/dist/ExtUtils-ParseXS/t/
perl-5.22.1/dist/ExtUtils-ParseXS/t/001-basic.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/002-more.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/003-usage.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/101-standard_typemap_locations.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/102-trim_whitespace.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/103-tidy_type.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/104-map_type.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/105-valid_proto_string.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/106-process_typemaps.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/108-map_type.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/109-standard_XS_defs.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/110-assign_func_args.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/111-analyze_preprocessor_statements.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/112-set_cond.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/113-check_cond_preproc_statements.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/114-blurt_death_Warn.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/115-avoid-noise.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/501-t-compile.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/510-t-bare.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/511-t-whitespace.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/512-t-file.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/513-t-merge.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/514-t-embed.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/515-t-cmd.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/516-t-clone.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/517-t-targetable.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/600-t-compat.t
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSInclude.xsh
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSMore.xs
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSTest.pm
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSTest.xs
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSUsage.pm
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSUsage.xs
perl-5.22.1/dist/ExtUtils-ParseXS/t/XSWarn.xs
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/b.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/combined.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/confl_repl.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/confl_skip.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/conflicting.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/other.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/perl.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/data/simple.typemap
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/ExtUtils/
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/ExtUtils/Typemaps/
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/ExtUtils/Typemaps/Test.pm
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/IncludeTester.pm
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/PrimitiveCapture.pm
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/TypemapTest/
perl-5.22.1/dist/ExtUtils-ParseXS/t/lib/TypemapTest/Foo.pm
perl-5.22.1/dist/ExtUtils-ParseXS/t/pseudotypemap1
perl-5.22.1/dist/ExtUtils-ParseXS/t/typemap
perl-5.22.1/dist/Filter-Simple/
perl-5.22.1/dist/Filter-Simple/lib/
perl-5.22.1/dist/Filter-Simple/lib/Filter/
perl-5.22.1/dist/Filter-Simple/lib/Filter/Simple.pm
perl-5.22.1/dist/Filter-Simple/t/
perl-5.22.1/dist/Filter-Simple/t/code_no_comments.t
perl-5.22.1/dist/Filter-Simple/t/data.t
perl-5.22.1/dist/Filter-Simple/t/export.t
perl-5.22.1/dist/Filter-Simple/t/filter.t
perl-5.22.1/dist/Filter-Simple/t/filter_only.t
perl-5.22.1/dist/Filter-Simple/t/import.t
perl-5.22.1/dist/Filter-Simple/t/lib/
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/Simple/
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/Simple/CodeNoComments.pm
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/Simple/ExportTest.pm
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/Simple/FilterOnlyTest.pm
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/Simple/FilterTest.pm
perl-5.22.1/dist/Filter-Simple/t/lib/Filter/Simple/ImportTest.pm
perl-5.22.1/dist/I18N-Collate/
perl-5.22.1/dist/I18N-Collate/lib/
perl-5.22.1/dist/I18N-Collate/lib/I18N/
perl-5.22.1/dist/I18N-Collate/lib/I18N/Collate.pm
perl-5.22.1/dist/I18N-Collate/t/
perl-5.22.1/dist/I18N-Collate/t/I18N-Collate.t
perl-5.22.1/dist/I18N-LangTags/
perl-5.22.1/dist/I18N-LangTags/ChangeLog
perl-5.22.1/dist/I18N-LangTags/README
perl-5.22.1/dist/I18N-LangTags/lib/
perl-5.22.1/dist/I18N-LangTags/lib/I18N/
perl-5.22.1/dist/I18N-LangTags/lib/I18N/LangTags/
perl-5.22.1/dist/I18N-LangTags/lib/I18N/LangTags.pm
perl-5.22.1/dist/I18N-LangTags/lib/I18N/LangTags/Detect.pm
perl-5.22.1/dist/I18N-LangTags/lib/I18N/LangTags/List.pm
perl-5.22.1/dist/I18N-LangTags/t/
perl-5.22.1/dist/I18N-LangTags/t/01_about_verbose.t
perl-5.22.1/dist/I18N-LangTags/t/05_main.t
perl-5.22.1/dist/I18N-LangTags/t/07_listy.t
perl-5.22.1/dist/I18N-LangTags/t/10_http.t
perl-5.22.1/dist/I18N-LangTags/t/20_locales.t
perl-5.22.1/dist/I18N-LangTags/t/50_super.t
perl-5.22.1/dist/I18N-LangTags/t/55_supers_strict.t
perl-5.22.1/dist/I18N-LangTags/t/80_all_env.t
perl-5.22.1/dist/IO/
perl-5.22.1/dist/IO/ChangeLog
perl-5.22.1/dist/IO/IO.pm
perl-5.22.1/dist/IO/IO.xs
perl-5.22.1/dist/IO/Makefile.PL
perl-5.22.1/dist/IO/README
perl-5.22.1/dist/IO/hints/
perl-5.22.1/dist/IO/hints/sco.pl
perl-5.22.1/dist/IO/lib/
perl-5.22.1/dist/IO/lib/IO/
perl-5.22.1/dist/IO/lib/IO/Dir.pm
perl-5.22.1/dist/IO/lib/IO/File.pm
perl-5.22.1/dist/IO/lib/IO/Handle.pm
perl-5.22.1/dist/IO/lib/IO/Pipe.pm
perl-5.22.1/dist/IO/lib/IO/Poll.pm
perl-5.22.1/dist/IO/lib/IO/Seekable.pm
perl-5.22.1/dist/IO/lib/IO/Select.pm
perl-5.22.1/dist/IO/lib/IO/Socket/
perl-5.22.1/dist/IO/lib/IO/Socket.pm
perl-5.22.1/dist/IO/lib/IO/Socket/INET.pm
perl-5.22.1/dist/IO/lib/IO/Socket/UNIX.pm
perl-5.22.1/dist/IO/poll.c
perl-5.22.1/dist/IO/poll.h
perl-5.22.1/dist/IO/t/
perl-5.22.1/dist/IO/t/IO.t
perl-5.22.1/dist/IO/t/cachepropagate-tcp.t
perl-5.22.1/dist/IO/t/cachepropagate-udp.t
perl-5.22.1/dist/IO/t/cachepropagate-unix.t
perl-5.22.1/dist/IO/t/io_const.t
perl-5.22.1/dist/IO/t/io_dir.t
perl-5.22.1/dist/IO/t/io_dup.t
perl-5.22.1/dist/IO/t/io_file.t
perl-5.22.1/dist/IO/t/io_file_export.t
perl-5.22.1/dist/IO/t/io_linenum.t
perl-5.22.1/dist/IO/t/io_multihomed.t
perl-5.22.1/dist/IO/t/io_pipe.t
perl-5.22.1/dist/IO/t/io_poll.t
perl-5.22.1/dist/IO/t/io_sel.t
perl-5.22.1/dist/IO/t/io_sock.t
perl-5.22.1/dist/IO/t/io_taint.t
perl-5.22.1/dist/IO/t/io_tell.t
perl-5.22.1/dist/IO/t/io_udp.t
perl-5.22.1/dist/IO/t/io_unix.t
perl-5.22.1/dist/IO/t/io_utf8.t
perl-5.22.1/dist/IO/t/io_utf8argv.t
perl-5.22.1/dist/IO/t/io_xs.t
perl-5.22.1/dist/Locale-Maketext/
perl-5.22.1/dist/Locale-Maketext/ChangeLog
perl-5.22.1/dist/Locale-Maketext/README
perl-5.22.1/dist/Locale-Maketext/lib/
perl-5.22.1/dist/Locale-Maketext/lib/Locale/
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext/
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext.pm
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext.pod
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext/Cookbook.pod
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm
perl-5.22.1/dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod
perl-5.22.1/dist/Locale-Maketext/t/
perl-5.22.1/dist/Locale-Maketext/t/01_about_verbose.t
perl-5.22.1/dist/Locale-Maketext/t/04_use_external_lex_cache.t
perl-5.22.1/dist/Locale-Maketext/t/09_compile.t
perl-5.22.1/dist/Locale-Maketext/t/10_make.t
perl-5.22.1/dist/Locale-Maketext/t/20_get.t
perl-5.22.1/dist/Locale-Maketext/t/30_eval_dollar_at.t
perl-5.22.1/dist/Locale-Maketext/t/40_super.t
perl-5.22.1/dist/Locale-Maketext/t/50_super.t
perl-5.22.1/dist/Locale-Maketext/t/60_super.t
perl-5.22.1/dist/Locale-Maketext/t/70_fail_auto.t
perl-5.22.1/dist/Locale-Maketext/t/90_utf8.t
perl-5.22.1/dist/Locale-Maketext/t/91_backslash.t
perl-5.22.1/dist/Math-BigInt/
perl-5.22.1/dist/Math-BigInt-FastCalc/
perl-5.22.1/dist/Math-BigInt-FastCalc/FastCalc.xs
perl-5.22.1/dist/Math-BigInt-FastCalc/lib/
perl-5.22.1/dist/Math-BigInt-FastCalc/lib/Math/
perl-5.22.1/dist/Math-BigInt-FastCalc/lib/Math/BigInt/
perl-5.22.1/dist/Math-BigInt-FastCalc/lib/Math/BigInt/FastCalc.pm
perl-5.22.1/dist/Math-BigInt-FastCalc/t/
perl-5.22.1/dist/Math-BigInt-FastCalc/t/bigintfc.t
perl-5.22.1/dist/Math-BigInt-FastCalc/t/bootstrap.t
perl-5.22.1/dist/Math-BigInt-FastCalc/t/leak.t
perl-5.22.1/dist/Math-BigInt-FastCalc/t/mbi_rand.t
perl-5.22.1/dist/Math-BigInt/lib/
perl-5.22.1/dist/Math-BigInt/lib/Math/
perl-5.22.1/dist/Math-BigInt/lib/Math/BigFloat.pm
perl-5.22.1/dist/Math-BigInt/lib/Math/BigInt/
perl-5.22.1/dist/Math-BigInt/lib/Math/BigInt.pm
perl-5.22.1/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
perl-5.22.1/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
perl-5.22.1/dist/Math-BigInt/t/
perl-5.22.1/dist/Math-BigInt/t/Math/
perl-5.22.1/dist/Math-BigInt/t/Math/BigFloat/
perl-5.22.1/dist/Math-BigInt/t/Math/BigFloat/Subclass.pm
perl-5.22.1/dist/Math-BigInt/t/Math/BigInt/
perl-5.22.1/dist/Math-BigInt/t/Math/BigInt/BareCalc.pm
perl-5.22.1/dist/Math-BigInt/t/Math/BigInt/Scalar.pm
perl-5.22.1/dist/Math-BigInt/t/Math/BigInt/Subclass.pm
perl-5.22.1/dist/Math-BigInt/t/_e_math.t
perl-5.22.1/dist/Math-BigInt/t/alias.inc
perl-5.22.1/dist/Math-BigInt/t/bare_mbf.t
perl-5.22.1/dist/Math-BigInt/t/bare_mbi.t
perl-5.22.1/dist/Math-BigInt/t/bare_mif.t
perl-5.22.1/dist/Math-BigInt/t/big_pi_e.t
perl-5.22.1/dist/Math-BigInt/t/bigfltpm.inc
perl-5.22.1/dist/Math-BigInt/t/bigfltpm.t
perl-5.22.1/dist/Math-BigInt/t/bigintc.t
perl-5.22.1/dist/Math-BigInt/t/bigintpm.inc
perl-5.22.1/dist/Math-BigInt/t/bigintpm.t
perl-5.22.1/dist/Math-BigInt/t/bigints.t
perl-5.22.1/dist/Math-BigInt/t/biglog.t
perl-5.22.1/dist/Math-BigInt/t/bigroot.t
perl-5.22.1/dist/Math-BigInt/t/calling.t
perl-5.22.1/dist/Math-BigInt/t/config.t
perl-5.22.1/dist/Math-BigInt/t/const_mbf.t
perl-5.22.1/dist/Math-BigInt/t/constant.t
perl-5.22.1/dist/Math-BigInt/t/downgrade.t
perl-5.22.1/dist/Math-BigInt/t/inf_nan.t
perl-5.22.1/dist/Math-BigInt/t/isa.t
perl-5.22.1/dist/Math-BigInt/t/lib_load.t
perl-5.22.1/dist/Math-BigInt/t/mbf_ali.t
perl-5.22.1/dist/Math-BigInt/t/mbi_ali.t
perl-5.22.1/dist/Math-BigInt/t/mbi_rand.t
perl-5.22.1/dist/Math-BigInt/t/mbimbf.inc
perl-5.22.1/dist/Math-BigInt/t/mbimbf.t
perl-5.22.1/dist/Math-BigInt/t/nan_cmp.t
perl-5.22.1/dist/Math-BigInt/t/new_overloaded.t
perl-5.22.1/dist/Math-BigInt/t/req_mbf0.t
perl-5.22.1/dist/Math-BigInt/t/req_mbf1.t
perl-5.22.1/dist/Math-BigInt/t/req_mbfa.t
perl-5.22.1/dist/Math-BigInt/t/req_mbfi.t
perl-5.22.1/dist/Math-BigInt/t/req_mbfn.t
perl-5.22.1/dist/Math-BigInt/t/req_mbfw.t
perl-5.22.1/dist/Math-BigInt/t/require.t
perl-5.22.1/dist/Math-BigInt/t/round.t
perl-5.22.1/dist/Math-BigInt/t/rt-16221.t
perl-5.22.1/dist/Math-BigInt/t/sub_ali.t
perl-5.22.1/dist/Math-BigInt/t/sub_mbf.t
perl-5.22.1/dist/Math-BigInt/t/sub_mbi.t
perl-5.22.1/dist/Math-BigInt/t/sub_mif.t
perl-5.22.1/dist/Math-BigInt/t/trap.t
perl-5.22.1/dist/Math-BigInt/t/upgrade.inc
perl-5.22.1/dist/Math-BigInt/t/upgrade.t
perl-5.22.1/dist/Math-BigInt/t/upgrade2.t
perl-5.22.1/dist/Math-BigInt/t/upgradef.t
perl-5.22.1/dist/Math-BigInt/t/use.t
perl-5.22.1/dist/Math-BigInt/t/use_lib1.t
perl-5.22.1/dist/Math-BigInt/t/use_lib2.t
perl-5.22.1/dist/Math-BigInt/t/use_lib3.t
perl-5.22.1/dist/Math-BigInt/t/use_lib4.t
perl-5.22.1/dist/Math-BigInt/t/use_mbfw.t
perl-5.22.1/dist/Math-BigInt/t/with_sub.t
perl-5.22.1/dist/Math-BigRat/
perl-5.22.1/dist/Math-BigRat/lib/
perl-5.22.1/dist/Math-BigRat/lib/Math/
perl-5.22.1/dist/Math-BigRat/lib/Math/BigRat.pm
perl-5.22.1/dist/Math-BigRat/t/
perl-5.22.1/dist/Math-BigRat/t/Math/
perl-5.22.1/dist/Math-BigRat/t/Math/BigRat/
perl-5.22.1/dist/Math-BigRat/t/Math/BigRat/Test.pm
perl-5.22.1/dist/Math-BigRat/t/big_ap.t
perl-5.22.1/dist/Math-BigRat/t/bigfltpm.inc
perl-5.22.1/dist/Math-BigRat/t/bigfltrt.t
perl-5.22.1/dist/Math-BigRat/t/biglog.t
perl-5.22.1/dist/Math-BigRat/t/bigrat.t
perl-5.22.1/dist/Math-BigRat/t/bigratpm.inc
perl-5.22.1/dist/Math-BigRat/t/bigratpm.t
perl-5.22.1/dist/Math-BigRat/t/bigratup.t
perl-5.22.1/dist/Math-BigRat/t/bigroot.t
perl-5.22.1/dist/Math-BigRat/t/bitwise.t
perl-5.22.1/dist/Math-BigRat/t/hang.t
perl-5.22.1/dist/Math-BigRat/t/requirer.t
perl-5.22.1/dist/Math-BigRat/t/trap.t
perl-5.22.1/dist/Module-CoreList/
perl-5.22.1/dist/Module-CoreList/Changes
perl-5.22.1/dist/Module-CoreList/MANIFEST
perl-5.22.1/dist/Module-CoreList/Makefile.PL
perl-5.22.1/dist/Module-CoreList/README
perl-5.22.1/dist/Module-CoreList/corelist
perl-5.22.1/dist/Module-CoreList/identify-dependencies
perl-5.22.1/dist/Module-CoreList/lib/
perl-5.22.1/dist/Module-CoreList/lib/Module/
perl-5.22.1/dist/Module-CoreList/lib/Module/CoreList/
perl-5.22.1/dist/Module-CoreList/lib/Module/CoreList.pm
perl-5.22.1/dist/Module-CoreList/lib/Module/CoreList.pod
perl-5.22.1/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm
perl-5.22.1/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
perl-5.22.1/dist/Module-CoreList/t/
perl-5.22.1/dist/Module-CoreList/t/corelist.t
perl-5.22.1/dist/Module-CoreList/t/deprecated.t
perl-5.22.1/dist/Module-CoreList/t/find_modules.t
perl-5.22.1/dist/Module-CoreList/t/is_core.t
perl-5.22.1/dist/Module-CoreList/t/pod.t
perl-5.22.1/dist/Module-CoreList/t/utils.t
perl-5.22.1/dist/Net-Ping/
perl-5.22.1/dist/Net-Ping/Changes
perl-5.22.1/dist/Net-Ping/lib/
perl-5.22.1/dist/Net-Ping/lib/Net/
perl-5.22.1/dist/Net-Ping/lib/Net/Ping.pm
perl-5.22.1/dist/Net-Ping/t/
perl-5.22.1/dist/Net-Ping/t/100_load.t
perl-5.22.1/dist/Net-Ping/t/110_icmp_inst.t
perl-5.22.1/dist/Net-Ping/t/120_udp_inst.t
perl-5.22.1/dist/Net-Ping/t/130_tcp_inst.t
perl-5.22.1/dist/Net-Ping/t/140_stream_inst.t
perl-5.22.1/dist/Net-Ping/t/150_syn_inst.t
perl-5.22.1/dist/Net-Ping/t/190_alarm.t
perl-5.22.1/dist/Net-Ping/t/200_ping_tcp.t
perl-5.22.1/dist/Net-Ping/t/250_ping_hires.t
perl-5.22.1/dist/Net-Ping/t/300_ping_stream.t
perl-5.22.1/dist/Net-Ping/t/400_ping_syn.t
perl-5.22.1/dist/Net-Ping/t/410_syn_host.t
perl-5.22.1/dist/Net-Ping/t/450_service.t
perl-5.22.1/dist/Net-Ping/t/500_ping_icmp.t
perl-5.22.1/dist/Net-Ping/t/510_ping_udp.t
perl-5.22.1/dist/Net-Ping/t/520_icmp_ttl.t
perl-5.22.1/dist/PathTools/
perl-5.22.1/dist/PathTools/Cwd.pm
perl-5.22.1/dist/PathTools/Cwd.xs
perl-5.22.1/dist/PathTools/Makefile.PL
perl-5.22.1/dist/PathTools/lib/
perl-5.22.1/dist/PathTools/lib/File/
perl-5.22.1/dist/PathTools/lib/File/Spec/
perl-5.22.1/dist/PathTools/lib/File/Spec.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/Cygwin.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/Epoc.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/Functions.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/Mac.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/OS2.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/Unix.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/VMS.pm
perl-5.22.1/dist/PathTools/lib/File/Spec/Win32.pm
perl-5.22.1/dist/PathTools/t/
perl-5.22.1/dist/PathTools/t/Functions.t
perl-5.22.1/dist/PathTools/t/Spec-taint.t
perl-5.22.1/dist/PathTools/t/Spec.t
perl-5.22.1/dist/PathTools/t/abs2rel.t
perl-5.22.1/dist/PathTools/t/crossplatform.t
perl-5.22.1/dist/PathTools/t/cwd.t
perl-5.22.1/dist/PathTools/t/rel2abs2rel.t
perl-5.22.1/dist/PathTools/t/taint.t
perl-5.22.1/dist/PathTools/t/tmpdir.t
perl-5.22.1/dist/PathTools/t/win32.t
perl-5.22.1/dist/Safe/
perl-5.22.1/dist/Safe/Changes
perl-5.22.1/dist/Safe/MANIFEST
perl-5.22.1/dist/Safe/META.yml
perl-5.22.1/dist/Safe/Makefile.PL
perl-5.22.1/dist/Safe/README
perl-5.22.1/dist/Safe/Safe.pm
perl-5.22.1/dist/Safe/t/
perl-5.22.1/dist/Safe/t/safe1.t
perl-5.22.1/dist/Safe/t/safe2.t
perl-5.22.1/dist/Safe/t/safe3.t
perl-5.22.1/dist/Safe/t/safeload.t
perl-5.22.1/dist/Safe/t/safenamedcap.t
perl-5.22.1/dist/Safe/t/safeops.t
perl-5.22.1/dist/Safe/t/saferegexp.t
perl-5.22.1/dist/Safe/t/safesecurity.t
perl-5.22.1/dist/Safe/t/safesort.t
perl-5.22.1/dist/Safe/t/safeuniversal.t
perl-5.22.1/dist/Safe/t/safeutf8.t
perl-5.22.1/dist/Safe/t/safewrap.t
perl-5.22.1/dist/Search-Dict/
perl-5.22.1/dist/Search-Dict/Changes
perl-5.22.1/dist/Search-Dict/Makefile.PL
perl-5.22.1/dist/Search-Dict/README.patching
perl-5.22.1/dist/Search-Dict/README.release
perl-5.22.1/dist/Search-Dict/lib/
perl-5.22.1/dist/Search-Dict/lib/Search/
perl-5.22.1/dist/Search-Dict/lib/Search/Dict.pm
perl-5.22.1/dist/Search-Dict/t/
perl-5.22.1/dist/Search-Dict/t/Dict.t
perl-5.22.1/dist/SelfLoader/
perl-5.22.1/dist/SelfLoader/lib/
perl-5.22.1/dist/SelfLoader/lib/SelfLoader.pm
perl-5.22.1/dist/SelfLoader/t/
perl-5.22.1/dist/SelfLoader/t/01SelfLoader.t
perl-5.22.1/dist/SelfLoader/t/02SelfLoader-buggy.t
perl-5.22.1/dist/SelfLoader/t/03taint.t
perl-5.22.1/dist/Storable/
perl-5.22.1/dist/Storable/ChangeLog
perl-5.22.1/dist/Storable/Makefile.PL
perl-5.22.1/dist/Storable/README
perl-5.22.1/dist/Storable/Storable.pm
perl-5.22.1/dist/Storable/Storable.xs
perl-5.22.1/dist/Storable/hints/
perl-5.22.1/dist/Storable/hints/gnukfreebsd.pl
perl-5.22.1/dist/Storable/hints/gnuknetbsd.pl
perl-5.22.1/dist/Storable/hints/hpux.pl
perl-5.22.1/dist/Storable/hints/linux.pl
perl-5.22.1/dist/Storable/t/
perl-5.22.1/dist/Storable/t/HAS_ATTACH.pm
perl-5.22.1/dist/Storable/t/HAS_HOOK.pm
perl-5.22.1/dist/Storable/t/HAS_OVERLOAD.pm
perl-5.22.1/dist/Storable/t/attach.t
perl-5.22.1/dist/Storable/t/attach_errors.t
perl-5.22.1/dist/Storable/t/attach_singleton.t
perl-5.22.1/dist/Storable/t/blessed.t
perl-5.22.1/dist/Storable/t/canonical.t
perl-5.22.1/dist/Storable/t/circular_hook.t
perl-5.22.1/dist/Storable/t/code.t
perl-5.22.1/dist/Storable/t/compat01.t
perl-5.22.1/dist/Storable/t/compat06.t
perl-5.22.1/dist/Storable/t/croak.t
perl-5.22.1/dist/Storable/t/dclone.t
perl-5.22.1/dist/Storable/t/destroy.t
perl-5.22.1/dist/Storable/t/downgrade.t
perl-5.22.1/dist/Storable/t/file_magic.t
perl-5.22.1/dist/Storable/t/forgive.t
perl-5.22.1/dist/Storable/t/freeze.t
perl-5.22.1/dist/Storable/t/integer.t
perl-5.22.1/dist/Storable/t/interwork56.t
perl-5.22.1/dist/Storable/t/just_plain_nasty.t
perl-5.22.1/dist/Storable/t/leaks.t
perl-5.22.1/dist/Storable/t/lock.t
perl-5.22.1/dist/Storable/t/make_56_interwork.pl
perl-5.22.1/dist/Storable/t/make_downgrade.pl
perl-5.22.1/dist/Storable/t/make_overload.pl
perl-5.22.1/dist/Storable/t/malice.t
perl-5.22.1/dist/Storable/t/overload.t
perl-5.22.1/dist/Storable/t/recurse.t
perl-5.22.1/dist/Storable/t/restrict.t
perl-5.22.1/dist/Storable/t/retrieve.t
perl-5.22.1/dist/Storable/t/robust.t
perl-5.22.1/dist/Storable/t/sig_die.t
perl-5.22.1/dist/Storable/t/st-dump.pl
perl-5.22.1/dist/Storable/t/store.t
perl-5.22.1/dist/Storable/t/testlib.pl
perl-5.22.1/dist/Storable/t/threads.t
perl-5.22.1/dist/Storable/t/tied.t
perl-5.22.1/dist/Storable/t/tied_hook.t
perl-5.22.1/dist/Storable/t/tied_items.t
perl-5.22.1/dist/Storable/t/tied_store.t
perl-5.22.1/dist/Storable/t/utf8.t
perl-5.22.1/dist/Storable/t/utf8hash.t
perl-5.22.1/dist/Storable/t/weak.t
perl-5.22.1/dist/Term-Complete/
perl-5.22.1/dist/Term-Complete/lib/
perl-5.22.1/dist/Term-Complete/lib/Term/
perl-5.22.1/dist/Term-Complete/lib/Term/Complete.pm
perl-5.22.1/dist/Term-Complete/t/
perl-5.22.1/dist/Term-Complete/t/Complete.t
perl-5.22.1/dist/Term-ReadLine/
perl-5.22.1/dist/Term-ReadLine/lib/
perl-5.22.1/dist/Term-ReadLine/lib/Term/
perl-5.22.1/dist/Term-ReadLine/lib/Term/ReadLine.pm
perl-5.22.1/dist/Term-ReadLine/t/
perl-5.22.1/dist/Term-ReadLine/t/AE.t
perl-5.22.1/dist/Term-ReadLine/t/AETk.t
perl-5.22.1/dist/Term-ReadLine/t/ReadLine.t
perl-5.22.1/dist/Term-ReadLine/t/Tk.t
perl-5.22.1/dist/Text-Abbrev/
perl-5.22.1/dist/Text-Abbrev/lib/
perl-5.22.1/dist/Text-Abbrev/lib/Text/
perl-5.22.1/dist/Text-Abbrev/lib/Text/Abbrev.pm
perl-5.22.1/dist/Text-Abbrev/t/
perl-5.22.1/dist/Text-Abbrev/t/Abbrev.t
perl-5.22.1/dist/Thread-Queue/
perl-5.22.1/dist/Thread-Queue/lib/
perl-5.22.1/dist/Thread-Queue/lib/Thread/
perl-5.22.1/dist/Thread-Queue/lib/Thread/Queue.pm
perl-5.22.1/dist/Thread-Queue/t/
perl-5.22.1/dist/Thread-Queue/t/01_basic.t
perl-5.22.1/dist/Thread-Queue/t/02_refs.t
perl-5.22.1/dist/Thread-Queue/t/03_peek.t
perl-5.22.1/dist/Thread-Queue/t/04_errs.t
perl-5.22.1/dist/Thread-Queue/t/05_extract.t
perl-5.22.1/dist/Thread-Queue/t/06_insert.t
perl-5.22.1/dist/Thread-Queue/t/07_lock.t
perl-5.22.1/dist/Thread-Queue/t/08_nothreads.t
perl-5.22.1/dist/Thread-Queue/t/09_ended.t
perl-5.22.1/dist/Thread-Queue/t/10_timed.t
perl-5.22.1/dist/Thread-Semaphore/
perl-5.22.1/dist/Thread-Semaphore/lib/
perl-5.22.1/dist/Thread-Semaphore/lib/Thread/
perl-5.22.1/dist/Thread-Semaphore/lib/Thread/Semaphore.pm
perl-5.22.1/dist/Thread-Semaphore/t/
perl-5.22.1/dist/Thread-Semaphore/t/01_basic.t
perl-5.22.1/dist/Thread-Semaphore/t/02_errs.t
perl-5.22.1/dist/Thread-Semaphore/t/03_nothreads.t
perl-5.22.1/dist/Thread-Semaphore/t/04_nonblocking.t
perl-5.22.1/dist/Thread-Semaphore/t/05_force.t
perl-5.22.1/dist/Tie-File/
perl-5.22.1/dist/Tie-File/lib/
perl-5.22.1/dist/Tie-File/lib/Tie/
perl-5.22.1/dist/Tie-File/lib/Tie/File.pm
perl-5.22.1/dist/Tie-File/t/
perl-5.22.1/dist/Tie-File/t/00_version.t
perl-5.22.1/dist/Tie-File/t/01_gen.t
perl-5.22.1/dist/Tie-File/t/02_fetchsize.t
perl-5.22.1/dist/Tie-File/t/03_longfetch.t
perl-5.22.1/dist/Tie-File/t/04_splice.t
perl-5.22.1/dist/Tie-File/t/05_size.t
perl-5.22.1/dist/Tie-File/t/06_fixrec.t
perl-5.22.1/dist/Tie-File/t/07_rv_splice.t
perl-5.22.1/dist/Tie-File/t/08_ro.t
perl-5.22.1/dist/Tie-File/t/09_gen_rs.t
perl-5.22.1/dist/Tie-File/t/10_splice_rs.t
perl-5.22.1/dist/Tie-File/t/11_rv_splice_rs.t
perl-5.22.1/dist/Tie-File/t/12_longfetch_rs.t
perl-5.22.1/dist/Tie-File/t/13_size_rs.t
perl-5.22.1/dist/Tie-File/t/14_lock.t
perl-5.22.1/dist/Tie-File/t/15_pushpop.t
perl-5.22.1/dist/Tie-File/t/16_handle.t
perl-5.22.1/dist/Tie-File/t/17_misc_meth.t
perl-5.22.1/dist/Tie-File/t/18_rs_fixrec.t
perl-5.22.1/dist/Tie-File/t/19_cache.t
perl-5.22.1/dist/Tie-File/t/20_cache_full.t
perl-5.22.1/dist/Tie-File/t/21_win32.t
perl-5.22.1/dist/Tie-File/t/22_autochomp.t
perl-5.22.1/dist/Tie-File/t/23_rv_ac_splice.t
perl-5.22.1/dist/Tie-File/t/24_cache_loop.t
perl-5.22.1/dist/Tie-File/t/25_gen_nocache.t
perl-5.22.1/dist/Tie-File/t/26_twrite.t
perl-5.22.1/dist/Tie-File/t/27_iwrite.t
perl-5.22.1/dist/Tie-File/t/28_mtwrite.t
perl-5.22.1/dist/Tie-File/t/29_downcopy.t
perl-5.22.1/dist/Tie-File/t/29a_upcopy.t
perl-5.22.1/dist/Tie-File/t/30_defer.t
perl-5.22.1/dist/Tie-File/t/31_autodefer.t
perl-5.22.1/dist/Tie-File/t/32_defer_misc.t
perl-5.22.1/dist/Tie-File/t/33_defer_vs.t
perl-5.22.1/dist/Tie-File/t/40_abs_cache.t
perl-5.22.1/dist/Tie-File/t/41_heap.t
perl-5.22.1/dist/Tie-File/t/42_offset.t
perl-5.22.1/dist/XSLoader/
perl-5.22.1/dist/XSLoader/Makefile.PL
perl-5.22.1/dist/XSLoader/XSLoader_pm.PL
perl-5.22.1/dist/XSLoader/t/
perl-5.22.1/dist/XSLoader/t/XSLoader.t
perl-5.22.1/dist/autouse/
perl-5.22.1/dist/autouse/lib/
perl-5.22.1/dist/autouse/lib/autouse.pm
perl-5.22.1/dist/autouse/t/
perl-5.22.1/dist/autouse/t/autouse.t
perl-5.22.1/dist/autouse/t/lib/
perl-5.22.1/dist/autouse/t/lib/MyTestModule.pm
perl-5.22.1/dist/autouse/t/lib/MyTestModule2.pm
perl-5.22.1/dist/base/
perl-5.22.1/dist/base/Changes
perl-5.22.1/dist/base/MANIFEST
perl-5.22.1/dist/base/META.yml
perl-5.22.1/dist/base/lib/
perl-5.22.1/dist/base/lib/base.pm
perl-5.22.1/dist/base/lib/fields.pm
perl-5.22.1/dist/base/t/
perl-5.22.1/dist/base/t/base-open-chunk.t
perl-5.22.1/dist/base/t/base-open-line.t
perl-5.22.1/dist/base/t/base.t
perl-5.22.1/dist/base/t/compile-time.t
perl-5.22.1/dist/base/t/core-global.t
perl-5.22.1/dist/base/t/fields-5_6_0.t
perl-5.22.1/dist/base/t/fields-5_8_0.t
perl-5.22.1/dist/base/t/fields-base.t
perl-5.22.1/dist/base/t/fields.t
perl-5.22.1/dist/base/t/isa.t
perl-5.22.1/dist/base/t/lib/
perl-5.22.1/dist/base/t/lib/Broken.pm
perl-5.22.1/dist/base/t/lib/Dummy.pm
perl-5.22.1/dist/base/t/lib/HasSigDie.pm
perl-5.22.1/dist/base/t/sigdie.t
perl-5.22.1/dist/base/t/version.t
perl-5.22.1/dist/base/t/warnings.t
perl-5.22.1/dist/bignum/
perl-5.22.1/dist/bignum/lib/
perl-5.22.1/dist/bignum/lib/Math/
perl-5.22.1/dist/bignum/lib/Math/BigFloat/
perl-5.22.1/dist/bignum/lib/Math/BigFloat/Trace.pm
perl-5.22.1/dist/bignum/lib/Math/BigInt/
perl-5.22.1/dist/bignum/lib/Math/BigInt/Trace.pm
perl-5.22.1/dist/bignum/lib/bigint.pm
perl-5.22.1/dist/bignum/lib/bignum.pm
perl-5.22.1/dist/bignum/lib/bigrat.pm
perl-5.22.1/dist/bignum/t/
perl-5.22.1/dist/bignum/t/big_e_pi.t
perl-5.22.1/dist/bignum/t/bigexp.t
perl-5.22.1/dist/bignum/t/bigint.t
perl-5.22.1/dist/bignum/t/bignum.t
perl-5.22.1/dist/bignum/t/bigrat.t
perl-5.22.1/dist/bignum/t/bii_e_pi.t
perl-5.22.1/dist/bignum/t/biinfnan.t
perl-5.22.1/dist/bignum/t/bir_e_pi.t
perl-5.22.1/dist/bignum/t/bn_lite.t
perl-5.22.1/dist/bignum/t/bninfnan.t
perl-5.22.1/dist/bignum/t/br_lite.t
perl-5.22.1/dist/bignum/t/brinfnan.t
perl-5.22.1/dist/bignum/t/in_effect.t
perl-5.22.1/dist/bignum/t/infnan.inc
perl-5.22.1/dist/bignum/t/option_a.t
perl-5.22.1/dist/bignum/t/option_l.t
perl-5.22.1/dist/bignum/t/option_p.t
perl-5.22.1/dist/bignum/t/overrides.t
perl-5.22.1/dist/bignum/t/ratopt_a.t
perl-5.22.1/dist/bignum/t/scope_f.t
perl-5.22.1/dist/bignum/t/scope_i.t
perl-5.22.1/dist/bignum/t/scope_r.t
perl-5.22.1/dist/constant/
perl-5.22.1/dist/constant/lib/
perl-5.22.1/dist/constant/lib/constant.pm
perl-5.22.1/dist/constant/t/
perl-5.22.1/dist/constant/t/constant.t
perl-5.22.1/dist/constant/t/utf8.t
perl-5.22.1/dist/if/
perl-5.22.1/dist/if/if.pm
perl-5.22.1/dist/if/t/
perl-5.22.1/dist/if/t/if.t
perl-5.22.1/dist/lib/
perl-5.22.1/dist/lib/Makefile.PL
perl-5.22.1/dist/lib/lib_pm.PL
perl-5.22.1/dist/lib/t/
perl-5.22.1/dist/lib/t/01lib.t
perl-5.22.1/dist/threads/
perl-5.22.1/dist/threads-shared/
perl-5.22.1/dist/threads-shared/hints/
perl-5.22.1/dist/threads-shared/hints/linux.pl
perl-5.22.1/dist/threads-shared/lib/
perl-5.22.1/dist/threads-shared/lib/threads/
perl-5.22.1/dist/threads-shared/lib/threads/shared.pm
perl-5.22.1/dist/threads-shared/shared.xs
perl-5.22.1/dist/threads-shared/t/
perl-5.22.1/dist/threads-shared/t/0nothread.t
perl-5.22.1/dist/threads-shared/t/av_refs.t
perl-5.22.1/dist/threads-shared/t/av_simple.t
perl-5.22.1/dist/threads-shared/t/blessed.t
perl-5.22.1/dist/threads-shared/t/clone.t
perl-5.22.1/dist/threads-shared/t/cond.t
perl-5.22.1/dist/threads-shared/t/disabled.t
perl-5.22.1/dist/threads-shared/t/dualvar.t
perl-5.22.1/dist/threads-shared/t/hv_refs.t
perl-5.22.1/dist/threads-shared/t/hv_simple.t
perl-5.22.1/dist/threads-shared/t/no_share.t
perl-5.22.1/dist/threads-shared/t/object.t
perl-5.22.1/dist/threads-shared/t/object2.t
perl-5.22.1/dist/threads-shared/t/shared_attr.t
perl-5.22.1/dist/threads-shared/t/stress.t
perl-5.22.1/dist/threads-shared/t/sv_refs.t
perl-5.22.1/dist/threads-shared/t/sv_simple.t
perl-5.22.1/dist/threads-shared/t/utf8.t
perl-5.22.1/dist/threads-shared/t/wait.t
perl-5.22.1/dist/threads-shared/t/waithires.t
perl-5.22.1/dist/threads/hints/
perl-5.22.1/dist/threads/hints/hpux.pl
perl-5.22.1/dist/threads/hints/linux.pl
perl-5.22.1/dist/threads/lib/
perl-5.22.1/dist/threads/lib/threads.pm
perl-5.22.1/dist/threads/t/
perl-5.22.1/dist/threads/t/basic.t
perl-5.22.1/dist/threads/t/blocks.t
perl-5.22.1/dist/threads/t/context.t
perl-5.22.1/dist/threads/t/end.t
perl-5.22.1/dist/threads/t/err.t
perl-5.22.1/dist/threads/t/exit.t
perl-5.22.1/dist/threads/t/free.t
perl-5.22.1/dist/threads/t/free2.t
perl-5.22.1/dist/threads/t/join.t
perl-5.22.1/dist/threads/t/kill.t
perl-5.22.1/dist/threads/t/kill2.t
perl-5.22.1/dist/threads/t/libc.t
perl-5.22.1/dist/threads/t/list.t
perl-5.22.1/dist/threads/t/no_threads.t
perl-5.22.1/dist/threads/t/problems.t
perl-5.22.1/dist/threads/t/stack.t
perl-5.22.1/dist/threads/t/stack_env.t
perl-5.22.1/dist/threads/t/state.t
perl-5.22.1/dist/threads/t/stress_cv.t
perl-5.22.1/dist/threads/t/stress_re.t
perl-5.22.1/dist/threads/t/stress_string.t
perl-5.22.1/dist/threads/t/thread.t
perl-5.22.1/dist/threads/threads.xs
perl-5.22.1/djgpp/
perl-5.22.1/djgpp/config.over
perl-5.22.1/djgpp/configure.bat
perl-5.22.1/djgpp/djgpp.c
perl-5.22.1/djgpp/djgpp.h
perl-5.22.1/djgpp/djgppsed.sh
perl-5.22.1/djgpp/fixpmain
perl-5.22.1/doio.c
perl-5.22.1/doop.c
perl-5.22.1/dosish.h
perl-5.22.1/dquote_static.c
perl-5.22.1/dump.c
perl-5.22.1/ebcdic_tables.h
perl-5.22.1/embed.fnc
perl-5.22.1/embed.h
perl-5.22.1/embedvar.h
perl-5.22.1/ext/
perl-5.22.1/ext/B/
perl-5.22.1/ext/B/B/
perl-5.22.1/ext/B/B.pm
perl-5.22.1/ext/B/B.xs
perl-5.22.1/ext/B/B/Concise.pm
perl-5.22.1/ext/B/B/Showlex.pm
perl-5.22.1/ext/B/B/Terse.pm
perl-5.22.1/ext/B/B/Xref.pm
perl-5.22.1/ext/B/Makefile.PL
perl-5.22.1/ext/B/O.pm
perl-5.22.1/ext/B/hints/
perl-5.22.1/ext/B/hints/darwin.pl
perl-5.22.1/ext/B/hints/openbsd.pl
perl-5.22.1/ext/B/t/
perl-5.22.1/ext/B/t/OptreeCheck.pm
perl-5.22.1/ext/B/t/b.t
perl-5.22.1/ext/B/t/concise-xs.t
perl-5.22.1/ext/B/t/concise.t
perl-5.22.1/ext/B/t/f_map
perl-5.22.1/ext/B/t/f_map.t
perl-5.22.1/ext/B/t/f_sort
perl-5.22.1/ext/B/t/f_sort.t
perl-5.22.1/ext/B/t/o.t
perl-5.22.1/ext/B/t/optree_check.t
perl-5.22.1/ext/B/t/optree_concise.t
perl-5.22.1/ext/B/t/optree_constants.t
perl-5.22.1/ext/B/t/optree_misc.t
perl-5.22.1/ext/B/t/optree_samples.t
perl-5.22.1/ext/B/t/optree_sort.t
perl-5.22.1/ext/B/t/optree_specials.t
perl-5.22.1/ext/B/t/optree_varinit.t
perl-5.22.1/ext/B/t/pragma.t
perl-5.22.1/ext/B/t/showlex.t
perl-5.22.1/ext/B/t/terse.t
perl-5.22.1/ext/B/t/walkoptree.t
perl-5.22.1/ext/B/t/xref.t
perl-5.22.1/ext/B/typemap
perl-5.22.1/ext/Devel-Peek/
perl-5.22.1/ext/Devel-Peek/Changes
perl-5.22.1/ext/Devel-Peek/Peek.pm
perl-5.22.1/ext/Devel-Peek/Peek.xs
perl-5.22.1/ext/Devel-Peek/t/
perl-5.22.1/ext/Devel-Peek/t/Peek.t
perl-5.22.1/ext/DynaLoader/
perl-5.22.1/ext/DynaLoader/DynaLoader_pm.PL
perl-5.22.1/ext/DynaLoader/Makefile.PL
perl-5.22.1/ext/DynaLoader/README
perl-5.22.1/ext/DynaLoader/dl_aix.xs
perl-5.22.1/ext/DynaLoader/dl_dllload.xs
perl-5.22.1/ext/DynaLoader/dl_dlopen.xs
perl-5.22.1/ext/DynaLoader/dl_dyld.xs
perl-5.22.1/ext/DynaLoader/dl_freemint.xs
perl-5.22.1/ext/DynaLoader/dl_hpux.xs
perl-5.22.1/ext/DynaLoader/dl_none.xs
perl-5.22.1/ext/DynaLoader/dl_symbian.xs
perl-5.22.1/ext/DynaLoader/dl_vms.xs
perl-5.22.1/ext/DynaLoader/dl_win32.xs
perl-5.22.1/ext/DynaLoader/dlutils.c
perl-5.22.1/ext/DynaLoader/hints/
perl-5.22.1/ext/DynaLoader/hints/aix.pl
perl-5.22.1/ext/DynaLoader/hints/android.pl
perl-5.22.1/ext/DynaLoader/hints/gnukfreebsd.pl
perl-5.22.1/ext/DynaLoader/hints/gnuknetbsd.pl
perl-5.22.1/ext/DynaLoader/hints/linux.pl
perl-5.22.1/ext/DynaLoader/hints/netbsd.pl
perl-5.22.1/ext/DynaLoader/hints/openbsd.pl
perl-5.22.1/ext/DynaLoader/t/
perl-5.22.1/ext/DynaLoader/t/DynaLoader.t
perl-5.22.1/ext/Errno/
perl-5.22.1/ext/Errno/ChangeLog
perl-5.22.1/ext/Errno/Errno_pm.PL
perl-5.22.1/ext/Errno/Errno_pm.PL.orig
perl-5.22.1/ext/Errno/Makefile.PL
perl-5.22.1/ext/Errno/t/
perl-5.22.1/ext/Errno/t/Errno.t
perl-5.22.1/ext/ExtUtils-Miniperl/
perl-5.22.1/ext/ExtUtils-Miniperl/lib/
perl-5.22.1/ext/ExtUtils-Miniperl/lib/ExtUtils/
perl-5.22.1/ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm
perl-5.22.1/ext/Fcntl/
perl-5.22.1/ext/Fcntl/Fcntl.pm
perl-5.22.1/ext/Fcntl/Fcntl.xs
perl-5.22.1/ext/Fcntl/Makefile.PL
perl-5.22.1/ext/Fcntl/t/
perl-5.22.1/ext/Fcntl/t/autoload.t
perl-5.22.1/ext/Fcntl/t/fcntl.t
perl-5.22.1/ext/Fcntl/t/mode.t
perl-5.22.1/ext/Fcntl/t/syslfs.t
perl-5.22.1/ext/File-DosGlob/
perl-5.22.1/ext/File-DosGlob/DosGlob.xs
perl-5.22.1/ext/File-DosGlob/lib/
perl-5.22.1/ext/File-DosGlob/lib/File/
perl-5.22.1/ext/File-DosGlob/lib/File/DosGlob.pm
perl-5.22.1/ext/File-DosGlob/t/
perl-5.22.1/ext/File-DosGlob/t/DosGlob.t
perl-5.22.1/ext/File-Find/
perl-5.22.1/ext/File-Find/lib/
perl-5.22.1/ext/File-Find/lib/File/
perl-5.22.1/ext/File-Find/lib/File/Find.pm
perl-5.22.1/ext/File-Find/t/
perl-5.22.1/ext/File-Find/t/find.t
perl-5.22.1/ext/File-Find/t/lib/
perl-5.22.1/ext/File-Find/t/lib/Testing.pm
perl-5.22.1/ext/File-Find/t/taint.t
perl-5.22.1/ext/File-Glob/
perl-5.22.1/ext/File-Glob/Changes
perl-5.22.1/ext/File-Glob/Glob.pm
perl-5.22.1/ext/File-Glob/Glob.xs
perl-5.22.1/ext/File-Glob/Makefile.PL
perl-5.22.1/ext/File-Glob/TODO
perl-5.22.1/ext/File-Glob/bsd_glob.c
perl-5.22.1/ext/File-Glob/bsd_glob.h
perl-5.22.1/ext/File-Glob/t/
perl-5.22.1/ext/File-Glob/t/basic.t
perl-5.22.1/ext/File-Glob/t/case.t
perl-5.22.1/ext/File-Glob/t/global.t
perl-5.22.1/ext/File-Glob/t/rt114984.t
perl-5.22.1/ext/File-Glob/t/taint.t
perl-5.22.1/ext/File-Glob/t/threads.t
perl-5.22.1/ext/FileCache/
perl-5.22.1/ext/FileCache/lib/
perl-5.22.1/ext/FileCache/lib/FileCache.pm
perl-5.22.1/ext/FileCache/t/
perl-5.22.1/ext/FileCache/t/01open.t
perl-5.22.1/ext/FileCache/t/02maxopen.t
perl-5.22.1/ext/FileCache/t/03append.t
perl-5.22.1/ext/FileCache/t/04twoarg.t
perl-5.22.1/ext/FileCache/t/05override.t
perl-5.22.1/ext/FileCache/t/06export.t
perl-5.22.1/ext/FileCache/t/07noimport.t
perl-5.22.1/ext/GDBM_File/
perl-5.22.1/ext/GDBM_File/GDBM_File.pm
perl-5.22.1/ext/GDBM_File/GDBM_File.xs
perl-5.22.1/ext/GDBM_File/Makefile.PL
perl-5.22.1/ext/GDBM_File/hints/
perl-5.22.1/ext/GDBM_File/hints/sco.pl
perl-5.22.1/ext/GDBM_File/t/
perl-5.22.1/ext/GDBM_File/t/fatal.t
perl-5.22.1/ext/GDBM_File/t/gdbm.t
perl-5.22.1/ext/GDBM_File/typemap
perl-5.22.1/ext/Hash-Util/
perl-5.22.1/ext/Hash-Util-FieldHash/
perl-5.22.1/ext/Hash-Util-FieldHash/Changes
perl-5.22.1/ext/Hash-Util-FieldHash/FieldHash.xs
perl-5.22.1/ext/Hash-Util-FieldHash/lib/
perl-5.22.1/ext/Hash-Util-FieldHash/lib/Hash/
perl-5.22.1/ext/Hash-Util-FieldHash/lib/Hash/Util/
perl-5.22.1/ext/Hash-Util-FieldHash/lib/Hash/Util/FieldHash.pm
perl-5.22.1/ext/Hash-Util-FieldHash/t/
perl-5.22.1/ext/Hash-Util-FieldHash/t/01_load.t
perl-5.22.1/ext/Hash-Util-FieldHash/t/02_function.t
perl-5.22.1/ext/Hash-Util-FieldHash/t/03_class.t
perl-5.22.1/ext/Hash-Util-FieldHash/t/04_thread.t
perl-5.22.1/ext/Hash-Util-FieldHash/t/05_perlhook.t
perl-5.22.1/ext/Hash-Util-FieldHash/t/11_hashassign.t
perl-5.22.1/ext/Hash-Util-FieldHash/t/12_hashwarn.t
perl-5.22.1/ext/Hash-Util/Changes
perl-5.22.1/ext/Hash-Util/Makefile.PL
perl-5.22.1/ext/Hash-Util/Util.xs
perl-5.22.1/ext/Hash-Util/lib/
perl-5.22.1/ext/Hash-Util/lib/Hash/
perl-5.22.1/ext/Hash-Util/lib/Hash/Util.pm
perl-5.22.1/ext/Hash-Util/t/
perl-5.22.1/ext/Hash-Util/t/Util.t
perl-5.22.1/ext/I18N-Langinfo/
perl-5.22.1/ext/I18N-Langinfo/Langinfo.pm
perl-5.22.1/ext/I18N-Langinfo/Langinfo.xs
perl-5.22.1/ext/I18N-Langinfo/Makefile.PL
perl-5.22.1/ext/I18N-Langinfo/t/
perl-5.22.1/ext/I18N-Langinfo/t/Langinfo.t
perl-5.22.1/ext/IPC-Open3/
perl-5.22.1/ext/IPC-Open3/lib/
perl-5.22.1/ext/IPC-Open3/lib/IPC/
perl-5.22.1/ext/IPC-Open3/lib/IPC/Open2.pm
perl-5.22.1/ext/IPC-Open3/lib/IPC/Open3.pm
perl-5.22.1/ext/IPC-Open3/t/
perl-5.22.1/ext/IPC-Open3/t/IPC-Open2.t
perl-5.22.1/ext/IPC-Open3/t/IPC-Open3.t
perl-5.22.1/ext/IPC-Open3/t/fd.t
perl-5.22.1/ext/NDBM_File/
perl-5.22.1/ext/NDBM_File/Makefile.PL
perl-5.22.1/ext/NDBM_File/NDBM_File.pm
perl-5.22.1/ext/NDBM_File/NDBM_File.xs
perl-5.22.1/ext/NDBM_File/hints/
perl-5.22.1/ext/NDBM_File/hints/MSWin32.pl
perl-5.22.1/ext/NDBM_File/hints/cygwin.pl
perl-5.22.1/ext/NDBM_File/hints/dec_osf.pl
perl-5.22.1/ext/NDBM_File/hints/dynixptx.pl
perl-5.22.1/ext/NDBM_File/hints/gnu.pl
perl-5.22.1/ext/NDBM_File/hints/gnukfreebsd.pl
perl-5.22.1/ext/NDBM_File/hints/gnuknetbsd.pl
perl-5.22.1/ext/NDBM_File/hints/linux.pl
perl-5.22.1/ext/NDBM_File/hints/sco.pl
perl-5.22.1/ext/NDBM_File/hints/solaris.pl
perl-5.22.1/ext/NDBM_File/hints/svr4.pl
perl-5.22.1/ext/NDBM_File/t/
perl-5.22.1/ext/NDBM_File/t/ndbm.t
perl-5.22.1/ext/NDBM_File/typemap
perl-5.22.1/ext/ODBM_File/
perl-5.22.1/ext/ODBM_File/Makefile.PL
perl-5.22.1/ext/ODBM_File/ODBM_File.pm
perl-5.22.1/ext/ODBM_File/ODBM_File.xs
perl-5.22.1/ext/ODBM_File/hints/
perl-5.22.1/ext/ODBM_File/hints/MSWin32.pl
perl-5.22.1/ext/ODBM_File/hints/cygwin.pl
perl-5.22.1/ext/ODBM_File/hints/dec_osf.pl
perl-5.22.1/ext/ODBM_File/hints/gnu.pl
perl-5.22.1/ext/ODBM_File/hints/gnukfreebsd.pl
perl-5.22.1/ext/ODBM_File/hints/gnuknetbsd.pl
perl-5.22.1/ext/ODBM_File/hints/hpux.pl
perl-5.22.1/ext/ODBM_File/hints/linux.pl
perl-5.22.1/ext/ODBM_File/hints/sco.pl
perl-5.22.1/ext/ODBM_File/hints/solaris.pl
perl-5.22.1/ext/ODBM_File/hints/svr4.pl
perl-5.22.1/ext/ODBM_File/hints/ultrix.pl
perl-5.22.1/ext/ODBM_File/t/
perl-5.22.1/ext/ODBM_File/t/odbm.t
perl-5.22.1/ext/ODBM_File/typemap
perl-5.22.1/ext/Opcode/
perl-5.22.1/ext/Opcode/Opcode.pm
perl-5.22.1/ext/Opcode/Opcode.xs
perl-5.22.1/ext/Opcode/ops.pm
perl-5.22.1/ext/Opcode/t/
perl-5.22.1/ext/Opcode/t/Opcode.t
perl-5.22.1/ext/Opcode/t/ops.t
perl-5.22.1/ext/POSIX/
perl-5.22.1/ext/POSIX/Makefile.PL
perl-5.22.1/ext/POSIX/POSIX.xs
perl-5.22.1/ext/POSIX/hints/
perl-5.22.1/ext/POSIX/hints/bsdos.pl
perl-5.22.1/ext/POSIX/hints/dynixptx.pl
perl-5.22.1/ext/POSIX/hints/freebsd.pl
perl-5.22.1/ext/POSIX/hints/gnukfreebsd.pl
perl-5.22.1/ext/POSIX/hints/gnuknetbsd.pl
perl-5.22.1/ext/POSIX/hints/linux.pl
perl-5.22.1/ext/POSIX/hints/mint.pl
perl-5.22.1/ext/POSIX/hints/netbsd.pl
perl-5.22.1/ext/POSIX/hints/openbsd.pl
perl-5.22.1/ext/POSIX/hints/sunos_4.pl
perl-5.22.1/ext/POSIX/hints/svr4.pl
perl-5.22.1/ext/POSIX/lib/
perl-5.22.1/ext/POSIX/lib/POSIX.pm
perl-5.22.1/ext/POSIX/lib/POSIX.pod
perl-5.22.1/ext/POSIX/t/
perl-5.22.1/ext/POSIX/t/export.t
perl-5.22.1/ext/POSIX/t/is.t
perl-5.22.1/ext/POSIX/t/iscrash
perl-5.22.1/ext/POSIX/t/math.t
perl-5.22.1/ext/POSIX/t/posix.t
perl-5.22.1/ext/POSIX/t/sigaction.t
perl-5.22.1/ext/POSIX/t/sigset.t
perl-5.22.1/ext/POSIX/t/strerror_errno.t
perl-5.22.1/ext/POSIX/t/sysconf.t
perl-5.22.1/ext/POSIX/t/taint.t
perl-5.22.1/ext/POSIX/t/termios.t
perl-5.22.1/ext/POSIX/t/time.t
perl-5.22.1/ext/POSIX/t/unimplemented.t
perl-5.22.1/ext/POSIX/t/usage.t
perl-5.22.1/ext/POSIX/t/waitpid.t
perl-5.22.1/ext/POSIX/t/wrappers.t
perl-5.22.1/ext/POSIX/typemap
perl-5.22.1/ext/PerlIO-encoding/
perl-5.22.1/ext/PerlIO-encoding/encoding.pm
perl-5.22.1/ext/PerlIO-encoding/encoding.xs
perl-5.22.1/ext/PerlIO-encoding/t/
perl-5.22.1/ext/PerlIO-encoding/t/encoding.t
perl-5.22.1/ext/PerlIO-encoding/t/fallback.t
perl-5.22.1/ext/PerlIO-encoding/t/nolooping.t
perl-5.22.1/ext/PerlIO-mmap/
perl-5.22.1/ext/PerlIO-mmap/mmap.pm
perl-5.22.1/ext/PerlIO-mmap/mmap.xs
perl-5.22.1/ext/PerlIO-scalar/
perl-5.22.1/ext/PerlIO-scalar/scalar.pm
perl-5.22.1/ext/PerlIO-scalar/scalar.xs
perl-5.22.1/ext/PerlIO-scalar/t/
perl-5.22.1/ext/PerlIO-scalar/t/scalar.t
perl-5.22.1/ext/PerlIO-scalar/t/scalar_ungetc.t
perl-5.22.1/ext/PerlIO-via/
perl-5.22.1/ext/PerlIO-via/hints/
perl-5.22.1/ext/PerlIO-via/hints/aix.pl
perl-5.22.1/ext/PerlIO-via/t/
perl-5.22.1/ext/PerlIO-via/t/via.t
perl-5.22.1/ext/PerlIO-via/via.pm
perl-5.22.1/ext/PerlIO-via/via.xs
perl-5.22.1/ext/Pod-Functions/
perl-5.22.1/ext/Pod-Functions/Functions_pm.PL
perl-5.22.1/ext/Pod-Functions/Makefile.PL
perl-5.22.1/ext/Pod-Functions/t/
perl-5.22.1/ext/Pod-Functions/t/Functions.t
perl-5.22.1/ext/Pod-Html/
perl-5.22.1/ext/Pod-Html/bin/
perl-5.22.1/ext/Pod-Html/bin/pod2html
perl-5.22.1/ext/Pod-Html/lib/
perl-5.22.1/ext/Pod-Html/lib/Pod/
perl-5.22.1/ext/Pod-Html/lib/Pod/Html.pm
perl-5.22.1/ext/Pod-Html/t/
perl-5.22.1/ext/Pod-Html/t/anchorify.t
perl-5.22.1/ext/Pod-Html/t/cache.pod
perl-5.22.1/ext/Pod-Html/t/cache.t
perl-5.22.1/ext/Pod-Html/t/crossref.pod
perl-5.22.1/ext/Pod-Html/t/crossref.t
perl-5.22.1/ext/Pod-Html/t/crossref2.t
perl-5.22.1/ext/Pod-Html/t/crossref3.t
perl-5.22.1/ext/Pod-Html/t/eol.t
perl-5.22.1/ext/Pod-Html/t/feature.pod
perl-5.22.1/ext/Pod-Html/t/feature.t
perl-5.22.1/ext/Pod-Html/t/feature2.pod
perl-5.22.1/ext/Pod-Html/t/feature2.t
perl-5.22.1/ext/Pod-Html/t/htmldir1.pod
perl-5.22.1/ext/Pod-Html/t/htmldir1.t
perl-5.22.1/ext/Pod-Html/t/htmldir2.pod
perl-5.22.1/ext/Pod-Html/t/htmldir2.t
perl-5.22.1/ext/Pod-Html/t/htmldir3.pod
perl-5.22.1/ext/Pod-Html/t/htmldir3.t
perl-5.22.1/ext/Pod-Html/t/htmldir4.pod
perl-5.22.1/ext/Pod-Html/t/htmldir4.t
perl-5.22.1/ext/Pod-Html/t/htmldir5.pod
perl-5.22.1/ext/Pod-Html/t/htmldir5.t
perl-5.22.1/ext/Pod-Html/t/htmlescp.pod
perl-5.22.1/ext/Pod-Html/t/htmlescp.t
perl-5.22.1/ext/Pod-Html/t/htmllink.pod
perl-5.22.1/ext/Pod-Html/t/htmllink.t
perl-5.22.1/ext/Pod-Html/t/htmlview.pod
perl-5.22.1/ext/Pod-Html/t/htmlview.t
perl-5.22.1/ext/Pod-Html/t/pod2html-lib.pl
perl-5.22.1/ext/Pod-Html/t/poderr.pod
perl-5.22.1/ext/Pod-Html/t/poderr.t
perl-5.22.1/ext/Pod-Html/t/podnoerr.pod
perl-5.22.1/ext/Pod-Html/t/podnoerr.t
perl-5.22.1/ext/Pod-Html/testdir/
perl-5.22.1/ext/Pod-Html/testdir/perlpodspec-copy.pod
perl-5.22.1/ext/Pod-Html/testdir/perlvar-copy.pod
perl-5.22.1/ext/SDBM_File/
perl-5.22.1/ext/SDBM_File/CHANGES
perl-5.22.1/ext/SDBM_File/COMPARE
perl-5.22.1/ext/SDBM_File/Makefile.PL
perl-5.22.1/ext/SDBM_File/README
perl-5.22.1/ext/SDBM_File/README.too
perl-5.22.1/ext/SDBM_File/SDBM_File.pm
perl-5.22.1/ext/SDBM_File/SDBM_File.xs
perl-5.22.1/ext/SDBM_File/biblio
perl-5.22.1/ext/SDBM_File/dba.c
perl-5.22.1/ext/SDBM_File/dbd.c
perl-5.22.1/ext/SDBM_File/dbe.1
perl-5.22.1/ext/SDBM_File/dbe.c
perl-5.22.1/ext/SDBM_File/dbu.c
perl-5.22.1/ext/SDBM_File/grind
perl-5.22.1/ext/SDBM_File/hash.c
perl-5.22.1/ext/SDBM_File/linux.patches
perl-5.22.1/ext/SDBM_File/makefile.sdbm
perl-5.22.1/ext/SDBM_File/pair.c
perl-5.22.1/ext/SDBM_File/pair.h
perl-5.22.1/ext/SDBM_File/readme.ms
perl-5.22.1/ext/SDBM_File/sdbm.3
perl-5.22.1/ext/SDBM_File/sdbm.c
perl-5.22.1/ext/SDBM_File/sdbm.h
perl-5.22.1/ext/SDBM_File/t/
perl-5.22.1/ext/SDBM_File/t/constants.t
perl-5.22.1/ext/SDBM_File/t/prep.t
perl-5.22.1/ext/SDBM_File/t/sdbm.t
perl-5.22.1/ext/SDBM_File/tune.h
perl-5.22.1/ext/SDBM_File/typemap
perl-5.22.1/ext/SDBM_File/util.c
perl-5.22.1/ext/Sys-Hostname/
perl-5.22.1/ext/Sys-Hostname/Hostname.pm
perl-5.22.1/ext/Sys-Hostname/Hostname.xs
perl-5.22.1/ext/Sys-Hostname/t/
perl-5.22.1/ext/Sys-Hostname/t/Hostname.t
perl-5.22.1/ext/Tie-Hash-NamedCapture/
perl-5.22.1/ext/Tie-Hash-NamedCapture/NamedCapture.pm
perl-5.22.1/ext/Tie-Hash-NamedCapture/NamedCapture.xs
perl-5.22.1/ext/Tie-Hash-NamedCapture/t/
perl-5.22.1/ext/Tie-Hash-NamedCapture/t/tiehash.t
perl-5.22.1/ext/Tie-Memoize/
perl-5.22.1/ext/Tie-Memoize/lib/
perl-5.22.1/ext/Tie-Memoize/lib/Tie/
perl-5.22.1/ext/Tie-Memoize/lib/Tie/Memoize.pm
perl-5.22.1/ext/Tie-Memoize/t/
perl-5.22.1/ext/Tie-Memoize/t/Tie-Memoize.t
perl-5.22.1/ext/VMS-DCLsym/
perl-5.22.1/ext/VMS-DCLsym/0README.txt
perl-5.22.1/ext/VMS-DCLsym/DCLsym.pm
perl-5.22.1/ext/VMS-DCLsym/DCLsym.xs
perl-5.22.1/ext/VMS-DCLsym/Makefile.PL
perl-5.22.1/ext/VMS-DCLsym/t/
perl-5.22.1/ext/VMS-DCLsym/t/vms_dclsym.t
perl-5.22.1/ext/VMS-Filespec/
perl-5.22.1/ext/VMS-Filespec/lib/
perl-5.22.1/ext/VMS-Filespec/lib/VMS/
perl-5.22.1/ext/VMS-Filespec/lib/VMS/Filespec.pm
perl-5.22.1/ext/VMS-Filespec/t/
perl-5.22.1/ext/VMS-Filespec/t/filespec.t
perl-5.22.1/ext/VMS-Stdio/
perl-5.22.1/ext/VMS-Stdio/0README.txt
perl-5.22.1/ext/VMS-Stdio/Makefile.PL
perl-5.22.1/ext/VMS-Stdio/Stdio.pm
perl-5.22.1/ext/VMS-Stdio/Stdio.xs
perl-5.22.1/ext/VMS-Stdio/t/
perl-5.22.1/ext/VMS-Stdio/t/vms_stdio.t
perl-5.22.1/ext/Win32CORE/
perl-5.22.1/ext/Win32CORE/Makefile.PL
perl-5.22.1/ext/Win32CORE/Win32CORE.c
perl-5.22.1/ext/Win32CORE/Win32CORE.pm
perl-5.22.1/ext/Win32CORE/t/
perl-5.22.1/ext/Win32CORE/t/win32core.t
perl-5.22.1/ext/XS-APItest/
perl-5.22.1/ext/XS-APItest/APItest.pm
perl-5.22.1/ext/XS-APItest/APItest.xs
perl-5.22.1/ext/XS-APItest/Makefile.PL
perl-5.22.1/ext/XS-APItest/XSUB-redefined-macros.xs
perl-5.22.1/ext/XS-APItest/XSUB-undef-XS_VERSION.xs
perl-5.22.1/ext/XS-APItest/core.c
perl-5.22.1/ext/XS-APItest/core_or_not.inc
perl-5.22.1/ext/XS-APItest/exception.c
perl-5.22.1/ext/XS-APItest/notcore.c
perl-5.22.1/ext/XS-APItest/numeric.xs
perl-5.22.1/ext/XS-APItest/t/
perl-5.22.1/ext/XS-APItest/t/BHK.pm
perl-5.22.1/ext/XS-APItest/t/Block.pm
perl-5.22.1/ext/XS-APItest/t/Markers.pm
perl-5.22.1/ext/XS-APItest/t/Null.pm
perl-5.22.1/ext/XS-APItest/t/addissub.t
perl-5.22.1/ext/XS-APItest/t/arrayexpr.t
perl-5.22.1/ext/XS-APItest/t/autoload.t
perl-5.22.1/ext/XS-APItest/t/blockasexpr.t
perl-5.22.1/ext/XS-APItest/t/blockhooks-csc.t
perl-5.22.1/ext/XS-APItest/t/blockhooks.t
perl-5.22.1/ext/XS-APItest/t/call.t
perl-5.22.1/ext/XS-APItest/t/call_checker.t
perl-5.22.1/ext/XS-APItest/t/caller.t
perl-5.22.1/ext/XS-APItest/t/callregexec.t
perl-5.22.1/ext/XS-APItest/t/check_warnings.t
perl-5.22.1/ext/XS-APItest/t/cleanup.t
perl-5.22.1/ext/XS-APItest/t/clone-with-stack.t
perl-5.22.1/ext/XS-APItest/t/cophh.t
perl-5.22.1/ext/XS-APItest/t/coplabel.t
perl-5.22.1/ext/XS-APItest/t/copstash.t
perl-5.22.1/ext/XS-APItest/t/copyhints.t
perl-5.22.1/ext/XS-APItest/t/customop.t
perl-5.22.1/ext/XS-APItest/t/cv_name.t
perl-5.22.1/ext/XS-APItest/t/eval-filter.t
perl-5.22.1/ext/XS-APItest/t/exception.t
perl-5.22.1/ext/XS-APItest/t/fetch_pad_names.t
perl-5.22.1/ext/XS-APItest/t/gotosub.t
perl-5.22.1/ext/XS-APItest/t/grok.t
perl-5.22.1/ext/XS-APItest/t/gv_autoload4.t
perl-5.22.1/ext/XS-APItest/t/gv_const_sv.t
perl-5.22.1/ext/XS-APItest/t/gv_fetchmeth.t
perl-5.22.1/ext/XS-APItest/t/gv_fetchmeth_autoload.t
perl-5.22.1/ext/XS-APItest/t/gv_fetchmethod_flags.t
perl-5.22.1/ext/XS-APItest/t/gv_init.t
perl-5.22.1/ext/XS-APItest/t/handy.t
perl-5.22.1/ext/XS-APItest/t/hash.t
perl-5.22.1/ext/XS-APItest/t/join_with_space.t
perl-5.22.1/ext/XS-APItest/t/keyword_multiline.t
perl-5.22.1/ext/XS-APItest/t/keyword_plugin.t
perl-5.22.1/ext/XS-APItest/t/labelconst.aux
perl-5.22.1/ext/XS-APItest/t/labelconst.t
perl-5.22.1/ext/XS-APItest/t/labelconst_utf8.aux
perl-5.22.1/ext/XS-APItest/t/lexsub.t
perl-5.22.1/ext/XS-APItest/t/locale.t
perl-5.22.1/ext/XS-APItest/t/loopblock.t
perl-5.22.1/ext/XS-APItest/t/looprest.t
perl-5.22.1/ext/XS-APItest/t/lvalue.t
perl-5.22.1/ext/XS-APItest/t/magic.t
perl-5.22.1/ext/XS-APItest/t/magic_chain.t
perl-5.22.1/ext/XS-APItest/t/mro.t
perl-5.22.1/ext/XS-APItest/t/multicall.t
perl-5.22.1/ext/XS-APItest/t/my_cxt.t
perl-5.22.1/ext/XS-APItest/t/my_exit.t
perl-5.22.1/ext/XS-APItest/t/newCONSTSUB.t
perl-5.22.1/ext/XS-APItest/t/newDEFSVOP.t
perl-5.22.1/ext/XS-APItest/t/op.t
perl-5.22.1/ext/XS-APItest/t/op_contextualize.t
perl-5.22.1/ext/XS-APItest/t/op_list.t
perl-5.22.1/ext/XS-APItest/t/overload.t
perl-5.22.1/ext/XS-APItest/t/pad_scalar.t
perl-5.22.1/ext/XS-APItest/t/peep.t
perl-5.22.1/ext/XS-APItest/t/pmflag.t
perl-5.22.1/ext/XS-APItest/t/postinc.t
perl-5.22.1/ext/XS-APItest/t/printf.t
perl-5.22.1/ext/XS-APItest/t/ptr_table.t
perl-5.22.1/ext/XS-APItest/t/push.t
perl-5.22.1/ext/XS-APItest/t/refs.t
perl-5.22.1/ext/XS-APItest/t/rmagical.t
perl-5.22.1/ext/XS-APItest/t/rv2cv_op_cv.t
perl-5.22.1/ext/XS-APItest/t/savehints.t
perl-5.22.1/ext/XS-APItest/t/scopelessblock.t
perl-5.22.1/ext/XS-APItest/t/sort.t
perl-5.22.1/ext/XS-APItest/t/stmtasexpr.t
perl-5.22.1/ext/XS-APItest/t/stmtsasexpr.t
perl-5.22.1/ext/XS-APItest/t/stuff_modify_bug.t
perl-5.22.1/ext/XS-APItest/t/stuff_svcur_bug.t
perl-5.22.1/ext/XS-APItest/t/subcall.t
perl-5.22.1/ext/XS-APItest/t/svcat.t
perl-5.22.1/ext/XS-APItest/t/sviscow.t
perl-5.22.1/ext/XS-APItest/t/svpeek.t
perl-5.22.1/ext/XS-APItest/t/svpv.t
perl-5.22.1/ext/XS-APItest/t/svpv_magic.t
perl-5.22.1/ext/XS-APItest/t/svsetsv.t
perl-5.22.1/ext/XS-APItest/t/swaplabel.t
perl-5.22.1/ext/XS-APItest/t/swaptwostmts.t
perl-5.22.1/ext/XS-APItest/t/sym-hook.t
perl-5.22.1/ext/XS-APItest/t/synthetic_scope.t
perl-5.22.1/ext/XS-APItest/t/temp_lv_sub.t
perl-5.22.1/ext/XS-APItest/t/underscore_length.t
perl-5.22.1/ext/XS-APItest/t/utf16_to_utf8.t
perl-5.22.1/ext/XS-APItest/t/utf8.t
perl-5.22.1/ext/XS-APItest/t/weaken.t
perl-5.22.1/ext/XS-APItest/t/whichsig.t
perl-5.22.1/ext/XS-APItest/t/xs_special_subs.t
perl-5.22.1/ext/XS-APItest/t/xs_special_subs_require.t
perl-5.22.1/ext/XS-APItest/t/xsub_h.t
perl-5.22.1/ext/XS-APItest/typemap
perl-5.22.1/ext/XS-Typemap/
perl-5.22.1/ext/XS-Typemap/Makefile.PL
perl-5.22.1/ext/XS-Typemap/README
perl-5.22.1/ext/XS-Typemap/Typemap.pm
perl-5.22.1/ext/XS-Typemap/Typemap.xs
perl-5.22.1/ext/XS-Typemap/stdio.c
perl-5.22.1/ext/XS-Typemap/t/
perl-5.22.1/ext/XS-Typemap/t/Typemap.t
perl-5.22.1/ext/arybase/
perl-5.22.1/ext/arybase/arybase.pm
perl-5.22.1/ext/arybase/arybase.xs
perl-5.22.1/ext/arybase/ptable.h
perl-5.22.1/ext/arybase/t/
perl-5.22.1/ext/arybase/t/aeach.t
perl-5.22.1/ext/arybase/t/aelem.t
perl-5.22.1/ext/arybase/t/akeys.t
perl-5.22.1/ext/arybase/t/arybase.t
perl-5.22.1/ext/arybase/t/aslice.t
perl-5.22.1/ext/arybase/t/av2arylen.t
perl-5.22.1/ext/arybase/t/index.t
perl-5.22.1/ext/arybase/t/lslice.t
perl-5.22.1/ext/arybase/t/pos.t
perl-5.22.1/ext/arybase/t/scope.t
perl-5.22.1/ext/arybase/t/scope_0.pm
perl-5.22.1/ext/arybase/t/splice.t
perl-5.22.1/ext/arybase/t/substr.t
perl-5.22.1/ext/attributes/
perl-5.22.1/ext/attributes/attributes.pm
perl-5.22.1/ext/attributes/attributes.xs
perl-5.22.1/ext/mro/
perl-5.22.1/ext/mro/Changes
perl-5.22.1/ext/mro/mro.pm
perl-5.22.1/ext/mro/mro.xs
perl-5.22.1/ext/re/
perl-5.22.1/ext/re/Makefile.PL
perl-5.22.1/ext/re/re.pm
perl-5.22.1/ext/re/re.xs
perl-5.22.1/ext/re/re_comp.h
perl-5.22.1/ext/re/re_top.h
perl-5.22.1/ext/re/t/
perl-5.22.1/ext/re/t/lexical_debug.pl
perl-5.22.1/ext/re/t/lexical_debug.t
perl-5.22.1/ext/re/t/qr.t
perl-5.22.1/ext/re/t/re.t
perl-5.22.1/ext/re/t/re_funcs.t
perl-5.22.1/ext/re/t/re_funcs_u.t
perl-5.22.1/ext/re/t/reflags.t
perl-5.22.1/ext/re/t/regop.pl
perl-5.22.1/ext/re/t/regop.t
perl-5.22.1/ext/re/t/strict.t
perl-5.22.1/fakesdio.h
perl-5.22.1/feature.h
perl-5.22.1/form.h
perl-5.22.1/generate_uudmap.c
perl-5.22.1/globals.c
perl-5.22.1/globvar.sym
perl-5.22.1/gv.c
perl-5.22.1/gv.h
perl-5.22.1/h2pl/
perl-5.22.1/h2pl/README
perl-5.22.1/h2pl/cbreak.pl
perl-5.22.1/h2pl/cbreak2.pl
perl-5.22.1/h2pl/eg/
perl-5.22.1/h2pl/eg/sizeof.ph
perl-5.22.1/h2pl/eg/sys/
perl-5.22.1/h2pl/eg/sys/errno.pl
perl-5.22.1/h2pl/eg/sys/ioctl.pl
perl-5.22.1/h2pl/eg/sysexits.pl
perl-5.22.1/h2pl/getioctlsizes
perl-5.22.1/h2pl/mksizes
perl-5.22.1/h2pl/mkvars
perl-5.22.1/h2pl/tcbreak
perl-5.22.1/h2pl/tcbreak2
perl-5.22.1/haiku/
perl-5.22.1/haiku/Haiku/
perl-5.22.1/haiku/Haiku/Haiku.pm
perl-5.22.1/haiku/Haiku/Haiku.xs
perl-5.22.1/haiku/Haiku/Makefile.PL
perl-5.22.1/haiku/haikuish.h
perl-5.22.1/handy.h
perl-5.22.1/hints/
perl-5.22.1/hints/README.hints
perl-5.22.1/hints/aix.sh
perl-5.22.1/hints/aix_3.sh
perl-5.22.1/hints/aix_4.sh
perl-5.22.1/hints/altos486.sh
perl-5.22.1/hints/amigaos.sh
perl-5.22.1/hints/atheos.sh
perl-5.22.1/hints/aux_3.sh
perl-5.22.1/hints/bitrig.sh
perl-5.22.1/hints/broken-db.msg
perl-5.22.1/hints/bsdos.sh
perl-5.22.1/hints/catamount.sh
perl-5.22.1/hints/convexos.sh
perl-5.22.1/hints/cxux.sh
perl-5.22.1/hints/cygwin.sh
perl-5.22.1/hints/darwin.sh
perl-5.22.1/hints/dcosx.sh
perl-5.22.1/hints/dec_osf.sh
perl-5.22.1/hints/dos_djgpp.sh
perl-5.22.1/hints/dragonfly.sh
perl-5.22.1/hints/dynix.sh
perl-5.22.1/hints/dynixptx.sh
perl-5.22.1/hints/epix.sh
perl-5.22.1/hints/esix4.sh
perl-5.22.1/hints/fps.sh
perl-5.22.1/hints/freebsd.sh
perl-5.22.1/hints/freemint.sh
perl-5.22.1/hints/genix.sh
perl-5.22.1/hints/gnu.sh
perl-5.22.1/hints/gnukfreebsd.sh
perl-5.22.1/hints/gnuknetbsd.sh
perl-5.22.1/hints/greenhills.sh
perl-5.22.1/hints/haiku.sh
perl-5.22.1/hints/hpux.sh
perl-5.22.1/hints/i386.sh
perl-5.22.1/hints/interix.sh
perl-5.22.1/hints/irix_4.sh
perl-5.22.1/hints/irix_5.sh
perl-5.22.1/hints/irix_6.sh
perl-5.22.1/hints/irix_6_0.sh
perl-5.22.1/hints/irix_6_1.sh
perl-5.22.1/hints/isc.sh
perl-5.22.1/hints/isc_2.sh
perl-5.22.1/hints/linux-android.sh
perl-5.22.1/hints/linux.sh
perl-5.22.1/hints/linux.sh.orig
perl-5.22.1/hints/lynxos.sh
perl-5.22.1/hints/midnightbsd.sh
perl-5.22.1/hints/mips.sh
perl-5.22.1/hints/mirbsd.sh
perl-5.22.1/hints/mpc.sh
perl-5.22.1/hints/ncr_tower.sh
perl-5.22.1/hints/netbsd.sh
perl-5.22.1/hints/newsos4.sh
perl-5.22.1/hints/nonstopux.sh
perl-5.22.1/hints/openbsd.sh
perl-5.22.1/hints/opus.sh
perl-5.22.1/hints/os2.sh
perl-5.22.1/hints/os390.sh
perl-5.22.1/hints/os400.sh
perl-5.22.1/hints/posix-bc.sh
perl-5.22.1/hints/powerux.sh
perl-5.22.1/hints/qnx.sh
perl-5.22.1/hints/riscos.sh
perl-5.22.1/hints/sco.sh
perl-5.22.1/hints/sco_2_3_0.sh
perl-5.22.1/hints/sco_2_3_1.sh
perl-5.22.1/hints/sco_2_3_2.sh
perl-5.22.1/hints/sco_2_3_3.sh
perl-5.22.1/hints/sco_2_3_4.sh
perl-5.22.1/hints/solaris_2.sh
perl-5.22.1/hints/stellar.sh
perl-5.22.1/hints/sunos_4_0.sh
perl-5.22.1/hints/sunos_4_1.sh
perl-5.22.1/hints/super-ux.sh
perl-5.22.1/hints/svr4.sh
perl-5.22.1/hints/svr5.sh
perl-5.22.1/hints/t001.c
perl-5.22.1/hints/ti1500.sh
perl-5.22.1/hints/ultrix_4.sh
perl-5.22.1/hints/umips.sh
perl-5.22.1/hints/unicos.sh
perl-5.22.1/hints/unicosmk.sh
perl-5.22.1/hints/unisysdynix.sh
perl-5.22.1/hints/utekv.sh
perl-5.22.1/hints/uwin.sh
perl-5.22.1/hints/vos.sh
perl-5.22.1/hv.c
perl-5.22.1/hv.h
perl-5.22.1/hv_func.h
perl-5.22.1/inline.h
perl-5.22.1/inline_invlist.c
perl-5.22.1/install_lib.pl
perl-5.22.1/installhtml
perl-5.22.1/installman
perl-5.22.1/installperl
perl-5.22.1/intrpvar.h
perl-5.22.1/iperlsys.h
perl-5.22.1/keywords.c
perl-5.22.1/keywords.h
perl-5.22.1/l1_char_class_tab.h
perl-5.22.1/lib/
perl-5.22.1/lib/AnyDBM_File.pm
perl-5.22.1/lib/AnyDBM_File.t
perl-5.22.1/lib/B/
perl-5.22.1/lib/B/Deparse-core.t
perl-5.22.1/lib/B/Deparse-subclass.t
perl-5.22.1/lib/B/Deparse.pm
perl-5.22.1/lib/B/Deparse.t
perl-5.22.1/lib/B/Op_private.pm
perl-5.22.1/lib/Benchmark.pm
perl-5.22.1/lib/Benchmark.t
perl-5.22.1/lib/CORE.pod
perl-5.22.1/lib/Class/
perl-5.22.1/lib/Class/Struct.pm
perl-5.22.1/lib/Class/Struct.t
perl-5.22.1/lib/Config/
perl-5.22.1/lib/Config.t
perl-5.22.1/lib/Config/Extensions.pm
perl-5.22.1/lib/Config/Extensions.t
perl-5.22.1/lib/DB.pm
perl-5.22.1/lib/DB.t
perl-5.22.1/lib/DBM_Filter/
perl-5.22.1/lib/DBM_Filter.pm
perl-5.22.1/lib/DBM_Filter/compress.pm
perl-5.22.1/lib/DBM_Filter/encode.pm
perl-5.22.1/lib/DBM_Filter/int32.pm
perl-5.22.1/lib/DBM_Filter/null.pm
perl-5.22.1/lib/DBM_Filter/t/
perl-5.22.1/lib/DBM_Filter/t/01error.t
perl-5.22.1/lib/DBM_Filter/t/02core.t
perl-5.22.1/lib/DBM_Filter/t/compress.t
perl-5.22.1/lib/DBM_Filter/t/encode.t
perl-5.22.1/lib/DBM_Filter/t/int32.t
perl-5.22.1/lib/DBM_Filter/t/null.t
perl-5.22.1/lib/DBM_Filter/t/utf8.t
perl-5.22.1/lib/DBM_Filter/utf8.pm
perl-5.22.1/lib/DirHandle.pm
perl-5.22.1/lib/DirHandle.t
perl-5.22.1/lib/English.pm
perl-5.22.1/lib/English.t
perl-5.22.1/lib/ExtUtils/
perl-5.22.1/lib/ExtUtils/Embed.pm
perl-5.22.1/lib/ExtUtils/XSSymSet.pm
perl-5.22.1/lib/ExtUtils/t/
perl-5.22.1/lib/ExtUtils/t/Embed.t
perl-5.22.1/lib/ExtUtils/typemap
perl-5.22.1/lib/File/
perl-5.22.1/lib/File/Basename.pm
perl-5.22.1/lib/File/Basename.t
perl-5.22.1/lib/File/Compare.pm
perl-5.22.1/lib/File/Compare.t
perl-5.22.1/lib/File/Copy.pm
perl-5.22.1/lib/File/Copy.t
perl-5.22.1/lib/File/stat-7896.t
perl-5.22.1/lib/File/stat.pm
perl-5.22.1/lib/File/stat.t
perl-5.22.1/lib/FileHandle.pm
perl-5.22.1/lib/FileHandle.t
perl-5.22.1/lib/FindBin.pm
perl-5.22.1/lib/FindBin.t
perl-5.22.1/lib/Getopt/
perl-5.22.1/lib/Getopt/Std.pm
perl-5.22.1/lib/Getopt/Std.t
perl-5.22.1/lib/Internals.t
perl-5.22.1/lib/Net/
perl-5.22.1/lib/Net/hostent.pm
perl-5.22.1/lib/Net/hostent.t
perl-5.22.1/lib/Net/netent.pm
perl-5.22.1/lib/Net/netent.t
perl-5.22.1/lib/Net/protoent.pm
perl-5.22.1/lib/Net/protoent.t
perl-5.22.1/lib/Net/servent.pm
perl-5.22.1/lib/Net/servent.t
perl-5.22.1/lib/PerlIO.pm
perl-5.22.1/lib/Pod/
perl-5.22.1/lib/Pod/t/
perl-5.22.1/lib/Pod/t/InputObjects.t
perl-5.22.1/lib/Pod/t/Select.t
perl-5.22.1/lib/Pod/t/Usage.t
perl-5.22.1/lib/Pod/t/utils.t
perl-5.22.1/lib/SelectSaver.pm
perl-5.22.1/lib/SelectSaver.t
perl-5.22.1/lib/Symbol.pm
perl-5.22.1/lib/Symbol.t
perl-5.22.1/lib/Thread.pm
perl-5.22.1/lib/Thread.t
perl-5.22.1/lib/Tie/
perl-5.22.1/lib/Tie/Array/
perl-5.22.1/lib/Tie/Array.pm
perl-5.22.1/lib/Tie/Array/push.t
perl-5.22.1/lib/Tie/Array/splice.t
perl-5.22.1/lib/Tie/Array/std.t
perl-5.22.1/lib/Tie/Array/stdpush.t
perl-5.22.1/lib/Tie/ExtraHash.t
perl-5.22.1/lib/Tie/Handle/
perl-5.22.1/lib/Tie/Handle.pm
perl-5.22.1/lib/Tie/Handle/stdhandle.t
perl-5.22.1/lib/Tie/Handle/stdhandle_from_handle.t
perl-5.22.1/lib/Tie/Hash.pm
perl-5.22.1/lib/Tie/Hash.t
perl-5.22.1/lib/Tie/Scalar.pm
perl-5.22.1/lib/Tie/Scalar.t
perl-5.22.1/lib/Tie/StdHandle.pm
perl-5.22.1/lib/Tie/SubstrHash.pm
perl-5.22.1/lib/Tie/SubstrHash.t
perl-5.22.1/lib/Time/
perl-5.22.1/lib/Time/gmtime.pm
perl-5.22.1/lib/Time/gmtime.t
perl-5.22.1/lib/Time/localtime.pm
perl-5.22.1/lib/Time/localtime.t
perl-5.22.1/lib/Time/tm.pm
perl-5.22.1/lib/UNIVERSAL.pm
perl-5.22.1/lib/Unicode/
perl-5.22.1/lib/Unicode/README
perl-5.22.1/lib/Unicode/UCD.pm
perl-5.22.1/lib/Unicode/UCD.t
perl-5.22.1/lib/User/
perl-5.22.1/lib/User/grent.pm
perl-5.22.1/lib/User/grent.t
perl-5.22.1/lib/User/pwent.pm
perl-5.22.1/lib/User/pwent.t
perl-5.22.1/lib/_charnames.pm
perl-5.22.1/lib/blib.pm
perl-5.22.1/lib/blib.t
perl-5.22.1/lib/bytes.pm
perl-5.22.1/lib/bytes.t
perl-5.22.1/lib/bytes_heavy.pl
perl-5.22.1/lib/charnames.pm
perl-5.22.1/lib/charnames.t
perl-5.22.1/lib/dbm_filter_util.pl
perl-5.22.1/lib/deprecate.pm
perl-5.22.1/lib/diagnostics.pm
perl-5.22.1/lib/diagnostics.t
perl-5.22.1/lib/dumpvar.pl
perl-5.22.1/lib/dumpvar.t
perl-5.22.1/lib/feature/
perl-5.22.1/lib/feature.pm
perl-5.22.1/lib/feature.t
perl-5.22.1/lib/feature/unicode_strings.t
perl-5.22.1/lib/filetest.pm
perl-5.22.1/lib/filetest.t
perl-5.22.1/lib/h2ph.t
perl-5.22.1/lib/h2xs.t
perl-5.22.1/lib/integer.pm
perl-5.22.1/lib/integer.t
perl-5.22.1/lib/less.pm
perl-5.22.1/lib/less.t
perl-5.22.1/lib/locale.pm
perl-5.22.1/lib/locale.t
perl-5.22.1/lib/meta_notation.pm
perl-5.22.1/lib/meta_notation.t
perl-5.22.1/lib/open.pm
perl-5.22.1/lib/open.t
perl-5.22.1/lib/overload/
perl-5.22.1/lib/overload.pm
perl-5.22.1/lib/overload.t
perl-5.22.1/lib/overload/numbers.pm
perl-5.22.1/lib/overload64.t
perl-5.22.1/lib/overloading.pm
perl-5.22.1/lib/overloading.t
perl-5.22.1/lib/perl5db/
perl-5.22.1/lib/perl5db.pl
perl-5.22.1/lib/perl5db.t
perl-5.22.1/lib/perl5db/t/
perl-5.22.1/lib/perl5db/t/EnableModule.pm
perl-5.22.1/lib/perl5db/t/MyModule.pm
perl-5.22.1/lib/perl5db/t/break-on-dot
perl-5.22.1/lib/perl5db/t/breakpoint-bug
perl-5.22.1/lib/perl5db/t/disable-breakpoints-1
perl-5.22.1/lib/perl5db/t/disable-breakpoints-2
perl-5.22.1/lib/perl5db/t/disable-breakpoints-3
perl-5.22.1/lib/perl5db/t/eval-line-bug
perl-5.22.1/lib/perl5db/t/fact
perl-5.22.1/lib/perl5db/t/filename-line-breakpoint
perl-5.22.1/lib/perl5db/t/load-modules
perl-5.22.1/lib/perl5db/t/lsub-n
perl-5.22.1/lib/perl5db/t/lvalue-bug
perl-5.22.1/lib/perl5db/t/proxy-constants
perl-5.22.1/lib/perl5db/t/rt-104168
perl-5.22.1/lib/perl5db/t/rt-121509-restart-after-chdir
perl-5.22.1/lib/perl5db/t/rt-61222
perl-5.22.1/lib/perl5db/t/rt-66110
perl-5.22.1/lib/perl5db/t/source-cmd-test-no-q.perldb
perl-5.22.1/lib/perl5db/t/source-cmd-test.perldb
perl-5.22.1/lib/perl5db/t/symbol-table-bug
perl-5.22.1/lib/perl5db/t/taint
perl-5.22.1/lib/perl5db/t/test-PrintRet-option-1
perl-5.22.1/lib/perl5db/t/test-a-statement-1
perl-5.22.1/lib/perl5db/t/test-dieLevel-option-1
perl-5.22.1/lib/perl5db/t/test-frame-option-1
perl-5.22.1/lib/perl5db/t/test-l-statement-1
perl-5.22.1/lib/perl5db/t/test-l-statement-2
perl-5.22.1/lib/perl5db/t/test-m-statement-1
perl-5.22.1/lib/perl5db/t/test-passing-at-underscore-to-x-etc
perl-5.22.1/lib/perl5db/t/test-r-statement
perl-5.22.1/lib/perl5db/t/test-w-statement-1
perl-5.22.1/lib/perl5db/t/test-warnLevel-option-1
perl-5.22.1/lib/perl5db/t/uncalled-subroutine
perl-5.22.1/lib/perl5db/t/with-subroutine
perl-5.22.1/lib/sigtrap.pm
perl-5.22.1/lib/sigtrap.t
perl-5.22.1/lib/sort.pm
perl-5.22.1/lib/sort.t
perl-5.22.1/lib/strict.pm
perl-5.22.1/lib/strict.t
perl-5.22.1/lib/subs.pm
perl-5.22.1/lib/subs.t
perl-5.22.1/lib/unicore/
perl-5.22.1/lib/unicore/ArabicShaping.txt
perl-5.22.1/lib/unicore/BidiBrackets.txt
perl-5.22.1/lib/unicore/BidiMirroring.txt
perl-5.22.1/lib/unicore/Blocks.txt
perl-5.22.1/lib/unicore/CJKRadicals.txt
perl-5.22.1/lib/unicore/CaseFolding.txt
perl-5.22.1/lib/unicore/CompositionExclusions.txt
perl-5.22.1/lib/unicore/DAge.txt
perl-5.22.1/lib/unicore/DCoreProperties.txt
perl-5.22.1/lib/unicore/DNormalizationProps.txt
perl-5.22.1/lib/unicore/EastAsianWidth.txt
perl-5.22.1/lib/unicore/EmojiSources.txt
perl-5.22.1/lib/unicore/HangulSyllableType.txt
perl-5.22.1/lib/unicore/Index.txt
perl-5.22.1/lib/unicore/IndicMatraCategory.txt
perl-5.22.1/lib/unicore/IndicSyllabicCategory.txt
perl-5.22.1/lib/unicore/Jamo.txt
perl-5.22.1/lib/unicore/LineBreak.txt
perl-5.22.1/lib/unicore/Makefile
perl-5.22.1/lib/unicore/NameAliases.txt
perl-5.22.1/lib/unicore/NamedSequences.txt
perl-5.22.1/lib/unicore/NamedSqProv.txt
perl-5.22.1/lib/unicore/NamesList.txt
perl-5.22.1/lib/unicore/NormalizationCorrections.txt
perl-5.22.1/lib/unicore/PropList.txt
perl-5.22.1/lib/unicore/PropValueAliases.txt
perl-5.22.1/lib/unicore/PropertyAliases.txt
perl-5.22.1/lib/unicore/README.perl
perl-5.22.1/lib/unicore/ReadMe.txt
perl-5.22.1/lib/unicore/ScriptExtensions.txt
perl-5.22.1/lib/unicore/Scripts.txt
perl-5.22.1/lib/unicore/SpecialCasing.txt
perl-5.22.1/lib/unicore/StandardizedVariants.txt
perl-5.22.1/lib/unicore/UnicodeData.txt
perl-5.22.1/lib/unicore/auxiliary/
perl-5.22.1/lib/unicore/auxiliary/GCBTest.txt
perl-5.22.1/lib/unicore/auxiliary/GraphemeBreakProperty.txt
perl-5.22.1/lib/unicore/auxiliary/SBTest.txt
perl-5.22.1/lib/unicore/auxiliary/SentenceBreakProperty.txt
perl-5.22.1/lib/unicore/auxiliary/WBTest.txt
perl-5.22.1/lib/unicore/auxiliary/WordBreakProperty.txt
perl-5.22.1/lib/unicore/extracted/
perl-5.22.1/lib/unicore/extracted/DBidiClass.txt
perl-5.22.1/lib/unicore/extracted/DBinaryProperties.txt
perl-5.22.1/lib/unicore/extracted/DCombiningClass.txt
perl-5.22.1/lib/unicore/extracted/DDecompositionType.txt
perl-5.22.1/lib/unicore/extracted/DEastAsianWidth.txt
perl-5.22.1/lib/unicore/extracted/DGeneralCategory.txt
perl-5.22.1/lib/unicore/extracted/DJoinGroup.txt
perl-5.22.1/lib/unicore/extracted/DJoinType.txt
perl-5.22.1/lib/unicore/extracted/DLineBreak.txt
perl-5.22.1/lib/unicore/extracted/DNumType.txt
perl-5.22.1/lib/unicore/extracted/DNumValues.txt
perl-5.22.1/lib/unicore/mktables
perl-5.22.1/lib/unicore/version
perl-5.22.1/lib/utf8.pm
perl-5.22.1/lib/utf8.t
perl-5.22.1/lib/utf8_heavy.pl
perl-5.22.1/lib/vars.pm
perl-5.22.1/lib/vars.t
perl-5.22.1/lib/vars_carp.t
perl-5.22.1/lib/vmsish.pm
perl-5.22.1/lib/vmsish.t
perl-5.22.1/lib/warnings/
perl-5.22.1/lib/warnings.pm
perl-5.22.1/lib/warnings.t
perl-5.22.1/lib/warnings/register.pm
perl-5.22.1/locale.c
perl-5.22.1/make_ext.pl
perl-5.22.1/make_patchnum.pl
perl-5.22.1/makedef.pl
perl-5.22.1/makedepend.SH
perl-5.22.1/malloc.c
perl-5.22.1/malloc_ctl.h
perl-5.22.1/mathoms.c
perl-5.22.1/metaconfig.SH
perl-5.22.1/metaconfig.h
perl-5.22.1/mg.c
perl-5.22.1/mg.h
perl-5.22.1/mg_names.c
perl-5.22.1/mg_raw.h
perl-5.22.1/mg_vtable.h
perl-5.22.1/miniperlmain.c
perl-5.22.1/mkppport
perl-5.22.1/mkppport.lst
perl-5.22.1/mro_core.c
perl-5.22.1/myconfig.SH
perl-5.22.1/mydtrace.h
perl-5.22.1/nostdio.h
perl-5.22.1/numeric.c
perl-5.22.1/op.c
perl-5.22.1/op.h
perl-5.22.1/op_reg_common.h
perl-5.22.1/opcode.h
perl-5.22.1/opnames.h
perl-5.22.1/os2/
perl-5.22.1/os2/Changes
perl-5.22.1/os2/Makefile.SHs
perl-5.22.1/os2/OS2/
perl-5.22.1/os2/OS2/OS2-ExtAttr/
perl-5.22.1/os2/OS2/OS2-ExtAttr/Changes
perl-5.22.1/os2/OS2/OS2-ExtAttr/ExtAttr.pm
perl-5.22.1/os2/OS2/OS2-ExtAttr/ExtAttr.xs
perl-5.22.1/os2/OS2/OS2-ExtAttr/MANIFEST
perl-5.22.1/os2/OS2/OS2-ExtAttr/Makefile.PL
perl-5.22.1/os2/OS2/OS2-ExtAttr/myea.h
perl-5.22.1/os2/OS2/OS2-ExtAttr/t/
perl-5.22.1/os2/OS2/OS2-ExtAttr/t/os2_ea.t
perl-5.22.1/os2/OS2/OS2-ExtAttr/typemap
perl-5.22.1/os2/OS2/OS2-PrfDB/
perl-5.22.1/os2/OS2/OS2-PrfDB/Changes
perl-5.22.1/os2/OS2/OS2-PrfDB/MANIFEST
perl-5.22.1/os2/OS2/OS2-PrfDB/Makefile.PL
perl-5.22.1/os2/OS2/OS2-PrfDB/PrfDB.pm
perl-5.22.1/os2/OS2/OS2-PrfDB/PrfDB.xs
perl-5.22.1/os2/OS2/OS2-PrfDB/t/
perl-5.22.1/os2/OS2/OS2-PrfDB/t/os2_prfdb.t
perl-5.22.1/os2/OS2/OS2-Process/
perl-5.22.1/os2/OS2/OS2-Process/MANIFEST
perl-5.22.1/os2/OS2/OS2-Process/Makefile.PL
perl-5.22.1/os2/OS2/OS2-Process/Process.pm
perl-5.22.1/os2/OS2/OS2-Process/Process.xs
perl-5.22.1/os2/OS2/OS2-Process/t/
perl-5.22.1/os2/OS2/OS2-Process/t/os2_atoms.t
perl-5.22.1/os2/OS2/OS2-Process/t/os2_clipboard.t
perl-5.22.1/os2/OS2/OS2-Process/t/os2_process.t
perl-5.22.1/os2/OS2/OS2-Process/t/os2_process_kid.t
perl-5.22.1/os2/OS2/OS2-Process/t/os2_process_text.t
perl-5.22.1/os2/OS2/OS2-REXX/
perl-5.22.1/os2/OS2/OS2-REXX/Changes
perl-5.22.1/os2/OS2/OS2-REXX/DLL/
perl-5.22.1/os2/OS2/OS2-REXX/DLL/Changes
perl-5.22.1/os2/OS2/OS2-REXX/DLL/DLL.pm
perl-5.22.1/os2/OS2/OS2-REXX/DLL/DLL.xs
perl-5.22.1/os2/OS2/OS2-REXX/DLL/MANIFEST
perl-5.22.1/os2/OS2/OS2-REXX/DLL/Makefile.PL
perl-5.22.1/os2/OS2/OS2-REXX/MANIFEST
perl-5.22.1/os2/OS2/OS2-REXX/Makefile.PL
perl-5.22.1/os2/OS2/OS2-REXX/REXX.pm
perl-5.22.1/os2/OS2/OS2-REXX/REXX.xs
perl-5.22.1/os2/OS2/OS2-REXX/t/
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_cmprt.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_dllld.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_emxrv.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_objcall.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_sql.test
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_tiesql.test
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_tievar.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_tieydb.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_varset.t
perl-5.22.1/os2/OS2/OS2-REXX/t/rx_vrexx.t
perl-5.22.1/os2/OS2/typemap
perl-5.22.1/os2/diff.configure
perl-5.22.1/os2/dl_os2.c
perl-5.22.1/os2/dlfcn.h
perl-5.22.1/os2/os2.c
perl-5.22.1/os2/os2.sym
perl-5.22.1/os2/os2_base.t
perl-5.22.1/os2/os2_pipe.t
perl-5.22.1/os2/os2add.sym
perl-5.22.1/os2/os2ish.h
perl-5.22.1/os2/os2thread.h
perl-5.22.1/os2/perl2cmd.pl
perl-5.22.1/os2/perlrexx.c
perl-5.22.1/os2/perlrexx.cmd
perl-5.22.1/overload.c
perl-5.22.1/overload.h
perl-5.22.1/packsizetables.c
perl-5.22.1/pad.c
perl-5.22.1/pad.h
perl-5.22.1/parser.h
perl-5.22.1/patchlevel.h
perl-5.22.1/perl.c
perl-5.22.1/perl.c.orig
perl-5.22.1/perl.h
perl-5.22.1/perlapi.c
perl-5.22.1/perlapi.h
perl-5.22.1/perldtrace.d
perl-5.22.1/perlio.c
perl-5.22.1/perlio.h
perl-5.22.1/perlio.sym
perl-5.22.1/perliol.h
perl-5.22.1/perlsdio.h
perl-5.22.1/perlvars.h
perl-5.22.1/perly.act
perl-5.22.1/perly.c
perl-5.22.1/perly.h
perl-5.22.1/perly.tab
perl-5.22.1/perly.y
perl-5.22.1/plan9/
perl-5.22.1/plan9/aperl
perl-5.22.1/plan9/arpa/
perl-5.22.1/plan9/arpa/inet.h
perl-5.22.1/plan9/buildinfo
perl-5.22.1/plan9/config.plan9
perl-5.22.1/plan9/config_h.sample
perl-5.22.1/plan9/config_sh.sample
perl-5.22.1/plan9/exclude
perl-5.22.1/plan9/fndvers
perl-5.22.1/plan9/genconfig.pl
perl-5.22.1/plan9/mkfile
perl-5.22.1/plan9/myconfig.plan9
perl-5.22.1/plan9/plan9.c
perl-5.22.1/plan9/plan9ish.h
perl-5.22.1/plan9/setup.rc
perl-5.22.1/plan9/versnum
perl-5.22.1/pod/
perl-5.22.1/pod/Makefile.SH
perl-5.22.1/pod/buildtoc
perl-5.22.1/pod/perl.pod
perl-5.22.1/pod/perl5004delta.pod
perl-5.22.1/pod/perl5005delta.pod
perl-5.22.1/pod/perl5100delta.pod
perl-5.22.1/pod/perl5101delta.pod
perl-5.22.1/pod/perl5120delta.pod
perl-5.22.1/pod/perl5121delta.pod
perl-5.22.1/pod/perl5122delta.pod
perl-5.22.1/pod/perl5123delta.pod
perl-5.22.1/pod/perl5124delta.pod
perl-5.22.1/pod/perl5125delta.pod
perl-5.22.1/pod/perl5140delta.pod
perl-5.22.1/pod/perl5141delta.pod
perl-5.22.1/pod/perl5142delta.pod
perl-5.22.1/pod/perl5143delta.pod
perl-5.22.1/pod/perl5144delta.pod
perl-5.22.1/pod/perl5160delta.pod
perl-5.22.1/pod/perl5161delta.pod
perl-5.22.1/pod/perl5162delta.pod
perl-5.22.1/pod/perl5163delta.pod
perl-5.22.1/pod/perl5180delta.pod
perl-5.22.1/pod/perl5181delta.pod
perl-5.22.1/pod/perl5182delta.pod
perl-5.22.1/pod/perl5184delta.pod
perl-5.22.1/pod/perl5200delta.pod
perl-5.22.1/pod/perl5201delta.pod
perl-5.22.1/pod/perl5202delta.pod
perl-5.22.1/pod/perl5203delta.pod
perl-5.22.1/pod/perl5220delta.pod
perl-5.22.1/pod/perl561delta.pod
perl-5.22.1/pod/perl56delta.pod
perl-5.22.1/pod/perl581delta.pod
perl-5.22.1/pod/perl582delta.pod
perl-5.22.1/pod/perl583delta.pod
perl-5.22.1/pod/perl584delta.pod
perl-5.22.1/pod/perl585delta.pod
perl-5.22.1/pod/perl586delta.pod
perl-5.22.1/pod/perl587delta.pod
perl-5.22.1/pod/perl588delta.pod
perl-5.22.1/pod/perl589delta.pod
perl-5.22.1/pod/perl58delta.pod
perl-5.22.1/pod/perlapio.pod
perl-5.22.1/pod/perlartistic.pod
perl-5.22.1/pod/perlbook.pod
perl-5.22.1/pod/perlboot.pod
perl-5.22.1/pod/perlbot.pod
perl-5.22.1/pod/perlcall.pod
perl-5.22.1/pod/perlcheat.pod
perl-5.22.1/pod/perlclib.pod
perl-5.22.1/pod/perlcommunity.pod
perl-5.22.1/pod/perldata.pod
perl-5.22.1/pod/perldbmfilter.pod
perl-5.22.1/pod/perldebguts.pod
perl-5.22.1/pod/perldebtut.pod
perl-5.22.1/pod/perldebug.pod
perl-5.22.1/pod/perldelta.pod
perl-5.22.1/pod/perldiag.pod
perl-5.22.1/pod/perldsc.pod
perl-5.22.1/pod/perldtrace.pod
perl-5.22.1/pod/perlebcdic.pod
perl-5.22.1/pod/perlembed.pod
perl-5.22.1/pod/perlexperiment.pod
perl-5.22.1/pod/perlfilter.pod
perl-5.22.1/pod/perlfork.pod
perl-5.22.1/pod/perlform.pod
perl-5.22.1/pod/perlfunc.pod
perl-5.22.1/pod/perlgit.pod
perl-5.22.1/pod/perlgpl.pod
perl-5.22.1/pod/perlguts.pod
perl-5.22.1/pod/perlhack.pod
perl-5.22.1/pod/perlhacktips.pod
perl-5.22.1/pod/perlhacktut.pod
perl-5.22.1/pod/perlhist.pod
perl-5.22.1/pod/perlinterp.pod
perl-5.22.1/pod/perlintro.pod
perl-5.22.1/pod/perliol.pod
perl-5.22.1/pod/perlipc.pod
perl-5.22.1/pod/perllexwarn.pod
perl-5.22.1/pod/perllocale.pod
perl-5.22.1/pod/perllol.pod
perl-5.22.1/pod/perlmod.pod
perl-5.22.1/pod/perlmodinstall.pod
perl-5.22.1/pod/perlmodlib.PL
perl-5.22.1/pod/perlmodstyle.pod
perl-5.22.1/pod/perlmroapi.pod
perl-5.22.1/pod/perlnewmod.pod
perl-5.22.1/pod/perlnumber.pod
perl-5.22.1/pod/perlobj.pod
perl-5.22.1/pod/perlootut.pod
perl-5.22.1/pod/perlop.pod
perl-5.22.1/pod/perlopentut.pod
perl-5.22.1/pod/perlpacktut.pod
perl-5.22.1/pod/perlperf.pod
perl-5.22.1/pod/perlpod.pod
perl-5.22.1/pod/perlpodspec.pod
perl-5.22.1/pod/perlpodstyle.pod
perl-5.22.1/pod/perlpolicy.pod
perl-5.22.1/pod/perlport.pod
perl-5.22.1/pod/perlpragma.pod
perl-5.22.1/pod/perlre.pod
perl-5.22.1/pod/perlreapi.pod
perl-5.22.1/pod/perlrebackslash.pod
perl-5.22.1/pod/perlrecharclass.pod
perl-5.22.1/pod/perlref.pod
perl-5.22.1/pod/perlreftut.pod
perl-5.22.1/pod/perlreguts.pod
perl-5.22.1/pod/perlrepository.pod
perl-5.22.1/pod/perlrequick.pod
perl-5.22.1/pod/perlreref.pod
perl-5.22.1/pod/perlretut.pod
perl-5.22.1/pod/perlrun.pod
perl-5.22.1/pod/perlsec.pod
perl-5.22.1/pod/perlsource.pod
perl-5.22.1/pod/perlstyle.pod
perl-5.22.1/pod/perlsub.pod
perl-5.22.1/pod/perlsyn.pod
perl-5.22.1/pod/perlthrtut.pod
perl-5.22.1/pod/perltie.pod
perl-5.22.1/pod/perltodo.pod
perl-5.22.1/pod/perltooc.pod
perl-5.22.1/pod/perltoot.pod
perl-5.22.1/pod/perltrap.pod
perl-5.22.1/pod/perlunicode.pod
perl-5.22.1/pod/perlunicook.pod
perl-5.22.1/pod/perlunifaq.pod
perl-5.22.1/pod/perluniintro.pod
perl-5.22.1/pod/perlunitut.pod
perl-5.22.1/pod/perlutil.pod
perl-5.22.1/pod/perlvar.pod
perl-5.22.1/pod/perlvms.pod
perl-5.22.1/pod/rofftoc
perl-5.22.1/pod/splitman
perl-5.22.1/pod/splitpod
perl-5.22.1/pp.c
perl-5.22.1/pp.h
perl-5.22.1/pp_ctl.c
perl-5.22.1/pp_hot.c
perl-5.22.1/pp_pack.c
perl-5.22.1/pp_proto.h
perl-5.22.1/pp_sort.c
perl-5.22.1/pp_sys.c
perl-5.22.1/proto.h
perl-5.22.1/qnx/
perl-5.22.1/qnx/ar
perl-5.22.1/qnx/cpp
perl-5.22.1/qnx/qnx.c
perl-5.22.1/reentr.c
perl-5.22.1/reentr.h
perl-5.22.1/regcharclass.h
perl-5.22.1/regcomp.c
perl-5.22.1/regcomp.h
perl-5.22.1/regcomp.sym
perl-5.22.1/regen/
perl-5.22.1/regen.pl
perl-5.22.1/regen/charset_translations.pl
perl-5.22.1/regen/ebcdic.pl
perl-5.22.1/regen/embed.pl
perl-5.22.1/regen/embed_lib.pl
perl-5.22.1/regen/feature.pl
perl-5.22.1/regen/genpacksizetables.pl
perl-5.22.1/regen/keywords.pl
perl-5.22.1/regen/lib_cleanup.pl
perl-5.22.1/regen/mg_vtable.pl
perl-5.22.1/regen/miniperlmain.pl
perl-5.22.1/regen/mk_PL_charclass.pl
perl-5.22.1/regen/mk_invlists.pl
perl-5.22.1/regen/op_private
perl-5.22.1/regen/opcode.pl
perl-5.22.1/regen/opcodes
perl-5.22.1/regen/overload.pl
perl-5.22.1/regen/reentr.pl
perl-5.22.1/regen/regcharclass.pl
perl-5.22.1/regen/regcharclass_multi_char_folds.pl
perl-5.22.1/regen/regcomp.pl
perl-5.22.1/regen/regen_lib.pl
perl-5.22.1/regen/uconfig_h.pl
perl-5.22.1/regen/unicode_constants.pl
perl-5.22.1/regen/warnings.pl
perl-5.22.1/regen_perly.pl
perl-5.22.1/regexec.c
perl-5.22.1/regexp.h
perl-5.22.1/regnodes.h
perl-5.22.1/run.c
perl-5.22.1/runtests.SH
perl-5.22.1/scope.c
perl-5.22.1/scope.h
perl-5.22.1/sv.c
perl-5.22.1/sv.h
perl-5.22.1/symbian/
perl-5.22.1/symbian/PerlApp.cpp
perl-5.22.1/symbian/PerlApp.h
perl-5.22.1/symbian/PerlApp.hrh
perl-5.22.1/symbian/PerlAppAif.rss
perl-5.22.1/symbian/PerlBase.cpp
perl-5.22.1/symbian/PerlBase.h
perl-5.22.1/symbian/PerlBase.pod
perl-5.22.1/symbian/PerlRecog.cpp
perl-5.22.1/symbian/PerlRecog.mmp
perl-5.22.1/symbian/PerlUi.cpp
perl-5.22.1/symbian/PerlUi.h
perl-5.22.1/symbian/PerlUi.hrh
perl-5.22.1/symbian/PerlUiS60.rss
perl-5.22.1/symbian/PerlUiS80.rss
perl-5.22.1/symbian/PerlUiS90.rss
perl-5.22.1/symbian/PerlUiUIQ.rss
perl-5.22.1/symbian/PerlUtil.cpp
perl-5.22.1/symbian/PerlUtil.h
perl-5.22.1/symbian/PerlUtil.pod
perl-5.22.1/symbian/README
perl-5.22.1/symbian/TODO
perl-5.22.1/symbian/bld.inf
perl-5.22.1/symbian/config.pl
perl-5.22.1/symbian/config.sh
perl-5.22.1/symbian/cwd.pl
perl-5.22.1/symbian/demo_pl
perl-5.22.1/symbian/ext/
perl-5.22.1/symbian/ext/Moped/
perl-5.22.1/symbian/ext/Moped/Msg/
perl-5.22.1/symbian/ext/Moped/Msg/Msg.mmp
perl-5.22.1/symbian/ext/Moped/Msg/Msg.pkg
perl-5.22.1/symbian/ext/Moped/Msg/Msg.pm
perl-5.22.1/symbian/ext/Moped/Msg/Msg.xs
perl-5.22.1/symbian/ext/Moped/Msg/README
perl-5.22.1/symbian/ext/Moped/Msg/bld.inf
perl-5.22.1/symbian/ext/Moped/Msg/location.pl
perl-5.22.1/symbian/find_writeable_data.pl
perl-5.22.1/symbian/hexdump.pl
perl-5.22.1/symbian/install.cfg
perl-5.22.1/symbian/makesis.pl
perl-5.22.1/symbian/port.pl
perl-5.22.1/symbian/sanity.pl
perl-5.22.1/symbian/sdk.pl
perl-5.22.1/symbian/sisify.pl
perl-5.22.1/symbian/symbian_dll.cpp
perl-5.22.1/symbian/symbian_proto.h
perl-5.22.1/symbian/symbian_stubs.c
perl-5.22.1/symbian/symbian_stubs.h
perl-5.22.1/symbian/symbian_utils.cpp
perl-5.22.1/symbian/symbianish.h
perl-5.22.1/symbian/uid.pl
perl-5.22.1/symbian/version.pl
perl-5.22.1/symbian/xsbuild.pl
perl-5.22.1/t/
perl-5.22.1/t/README
perl-5.22.1/t/TEST
perl-5.22.1/t/base/
perl-5.22.1/t/base/cond.t
perl-5.22.1/t/base/if.t
perl-5.22.1/t/base/lex.t
perl-5.22.1/t/base/num.t
perl-5.22.1/t/base/pat.t
perl-5.22.1/t/base/rs.t
perl-5.22.1/t/base/term.t
perl-5.22.1/t/base/translate.t
perl-5.22.1/t/base/while.t
perl-5.22.1/t/benchmark/
perl-5.22.1/t/benchmark/rt26188-speed-up-keys-on-empty-hash.t
perl-5.22.1/t/bigmem/
perl-5.22.1/t/bigmem/index.t
perl-5.22.1/t/bigmem/pos.t
perl-5.22.1/t/bigmem/read.t
perl-5.22.1/t/bigmem/regexp.t
perl-5.22.1/t/bigmem/subst.t
perl-5.22.1/t/bigmem/vec.t
perl-5.22.1/t/charset_tools.pl
perl-5.22.1/t/cmd/
perl-5.22.1/t/cmd/elsif.t
perl-5.22.1/t/cmd/for.t
perl-5.22.1/t/cmd/mod.t
perl-5.22.1/t/cmd/subval.t
perl-5.22.1/t/cmd/switch.t
perl-5.22.1/t/comp/
perl-5.22.1/t/comp/bproto.t
perl-5.22.1/t/comp/cmdopt.t
perl-5.22.1/t/comp/colon.t
perl-5.22.1/t/comp/decl.t
perl-5.22.1/t/comp/final_line_num.t
perl-5.22.1/t/comp/fold.t
perl-5.22.1/t/comp/form_scope.t
perl-5.22.1/t/comp/hints.aux
perl-5.22.1/t/comp/hints.t
perl-5.22.1/t/comp/line_debug.t
perl-5.22.1/t/comp/line_debug_0.aux
perl-5.22.1/t/comp/multiline.t
perl-5.22.1/t/comp/opsubs.t
perl-5.22.1/t/comp/our.t
perl-5.22.1/t/comp/package.t
perl-5.22.1/t/comp/package_block.t
perl-5.22.1/t/comp/parser.t
perl-5.22.1/t/comp/proto.t
perl-5.22.1/t/comp/redef.t
perl-5.22.1/t/comp/require.t
perl-5.22.1/t/comp/retainedlines.t
perl-5.22.1/t/comp/term.t
perl-5.22.1/t/comp/uproto.t
perl-5.22.1/t/comp/use.t
perl-5.22.1/t/comp/utf.t
perl-5.22.1/t/harness
perl-5.22.1/t/io/
perl-5.22.1/t/io/argv.t
perl-5.22.1/t/io/binmode.t
perl-5.22.1/t/io/bom.t
perl-5.22.1/t/io/closepid.t
perl-5.22.1/t/io/crlf.t
perl-5.22.1/t/io/crlf_through.t
perl-5.22.1/t/io/data.t
perl-5.22.1/t/io/defout.t
perl-5.22.1/t/io/dup.t
perl-5.22.1/t/io/eintr.t
perl-5.22.1/t/io/eintr_print.t
perl-5.22.1/t/io/errno.t
perl-5.22.1/t/io/errnosig.t
perl-5.22.1/t/io/fflush.t
perl-5.22.1/t/io/fs.t
perl-5.22.1/t/io/inplace.t
perl-5.22.1/t/io/iofile.t
perl-5.22.1/t/io/iprefix.t
perl-5.22.1/t/io/layers.t
perl-5.22.1/t/io/nargv.t
perl-5.22.1/t/io/open.t
perl-5.22.1/t/io/openpid.t
perl-5.22.1/t/io/perlio.t
perl-5.22.1/t/io/perlio_fail.t
perl-5.22.1/t/io/perlio_leaks.t
perl-5.22.1/t/io/perlio_open.t
perl-5.22.1/t/io/pipe.t
perl-5.22.1/t/io/print.t
perl-5.22.1/t/io/pvbm.t
perl-5.22.1/t/io/read.t
perl-5.22.1/t/io/say.t
perl-5.22.1/t/io/sem.t
perl-5.22.1/t/io/semctl.t
perl-5.22.1/t/io/shm.t
perl-5.22.1/t/io/socket.t
perl-5.22.1/t/io/tell.t
perl-5.22.1/t/io/through.t
perl-5.22.1/t/io/utf8.t
perl-5.22.1/t/japh/
perl-5.22.1/t/japh/abigail.t
perl-5.22.1/t/lib/
perl-5.22.1/t/lib/Cname.pm
perl-5.22.1/t/lib/Count.pm
perl-5.22.1/t/lib/Devel/
perl-5.22.1/t/lib/Devel/nodb.pm
perl-5.22.1/t/lib/Devel/switchd.pm
perl-5.22.1/t/lib/Devel/switchd_empty.pm
perl-5.22.1/t/lib/Devel/switchd_goto.pm
perl-5.22.1/t/lib/Sans_mypragma.pm
perl-5.22.1/t/lib/charnames/
perl-5.22.1/t/lib/charnames/alias
perl-5.22.1/t/lib/common.pl
perl-5.22.1/t/lib/commonsense.t
perl-5.22.1/t/lib/croak/
perl-5.22.1/t/lib/croak.t
perl-5.22.1/t/lib/croak/mg
perl-5.22.1/t/lib/croak/op
perl-5.22.1/t/lib/croak/pp
perl-5.22.1/t/lib/croak/pp_ctl
perl-5.22.1/t/lib/croak/pp_hot
perl-5.22.1/t/lib/croak/toke
perl-5.22.1/t/lib/cygwin.t
perl-5.22.1/t/lib/dbmt_common.pl
perl-5.22.1/t/lib/deprecate/
perl-5.22.1/t/lib/deprecate.t
perl-5.22.1/t/lib/deprecate/Deprecated.pm
perl-5.22.1/t/lib/deprecate/Optionally.pm
perl-5.22.1/t/lib/feature/
perl-5.22.1/t/lib/feature/bundle
perl-5.22.1/t/lib/feature/implicit
perl-5.22.1/t/lib/feature/nonesuch
perl-5.22.1/t/lib/feature/say
perl-5.22.1/t/lib/feature/switch
perl-5.22.1/t/lib/h2ph.h
perl-5.22.1/t/lib/h2ph.pht
perl-5.22.1/t/lib/locale/
perl-5.22.1/t/lib/locale/latin1
perl-5.22.1/t/lib/locale/utf8
perl-5.22.1/t/lib/mypragma.pm
perl-5.22.1/t/lib/mypragma.t
perl-5.22.1/t/lib/no_load.t
perl-5.22.1/t/lib/overload_fallback.t
perl-5.22.1/t/lib/overload_nomethod.t
perl-5.22.1/t/lib/proxy_constant_subs.t
perl-5.22.1/t/lib/strict/
perl-5.22.1/t/lib/strict/refs
perl-5.22.1/t/lib/strict/subs
perl-5.22.1/t/lib/strict/vars
perl-5.22.1/t/lib/subs/
perl-5.22.1/t/lib/subs/subs
perl-5.22.1/t/lib/test_require.pm
perl-5.22.1/t/lib/test_use.pm
perl-5.22.1/t/lib/test_use_14937.pm
perl-5.22.1/t/lib/universal.t
perl-5.22.1/t/lib/warnings/
perl-5.22.1/t/lib/warnings/1global
perl-5.22.1/t/lib/warnings/2use
perl-5.22.1/t/lib/warnings/3both
perl-5.22.1/t/lib/warnings/4lint
perl-5.22.1/t/lib/warnings/5nolint
perl-5.22.1/t/lib/warnings/6default
perl-5.22.1/t/lib/warnings/7fatal
perl-5.22.1/t/lib/warnings/8signal
perl-5.22.1/t/lib/warnings/9enabled
perl-5.22.1/t/lib/warnings/9uninit
perl-5.22.1/t/lib/warnings/av
perl-5.22.1/t/lib/warnings/doio
perl-5.22.1/t/lib/warnings/doop
perl-5.22.1/t/lib/warnings/gv
perl-5.22.1/t/lib/warnings/hv
perl-5.22.1/t/lib/warnings/malloc
perl-5.22.1/t/lib/warnings/mg
perl-5.22.1/t/lib/warnings/op
perl-5.22.1/t/lib/warnings/pad
perl-5.22.1/t/lib/warnings/perl
perl-5.22.1/t/lib/warnings/perlio
perl-5.22.1/t/lib/warnings/pp
perl-5.22.1/t/lib/warnings/pp_ctl
perl-5.22.1/t/lib/warnings/pp_hot
perl-5.22.1/t/lib/warnings/pp_pack
perl-5.22.1/t/lib/warnings/pp_sys
perl-5.22.1/t/lib/warnings/regcomp
perl-5.22.1/t/lib/warnings/regexec
perl-5.22.1/t/lib/warnings/run
perl-5.22.1/t/lib/warnings/sv
perl-5.22.1/t/lib/warnings/taint
perl-5.22.1/t/lib/warnings/toke
perl-5.22.1/t/lib/warnings/universal
perl-5.22.1/t/lib/warnings/utf8
perl-5.22.1/t/lib/warnings/util
perl-5.22.1/t/loc_tools.pl
perl-5.22.1/t/mro/
perl-5.22.1/t/mro/basic.t
perl-5.22.1/t/mro/basic_01_c3.t
perl-5.22.1/t/mro/basic_01_c3_utf8.t
perl-5.22.1/t/mro/basic_01_dfs.t
perl-5.22.1/t/mro/basic_01_dfs_utf8.t
perl-5.22.1/t/mro/basic_02_c3.t
perl-5.22.1/t/mro/basic_02_c3_utf8.t
perl-5.22.1/t/mro/basic_02_dfs.t
perl-5.22.1/t/mro/basic_02_dfs_utf8.t
perl-5.22.1/t/mro/basic_03_c3.t
perl-5.22.1/t/mro/basic_03_c3_utf8.t
perl-5.22.1/t/mro/basic_03_dfs.t
perl-5.22.1/t/mro/basic_03_dfs_utf8.t
perl-5.22.1/t/mro/basic_04_c3.t
perl-5.22.1/t/mro/basic_04_c3_utf8.t
perl-5.22.1/t/mro/basic_04_dfs.t
perl-5.22.1/t/mro/basic_04_dfs_utf8.t
perl-5.22.1/t/mro/basic_05_c3.t
perl-5.22.1/t/mro/basic_05_c3_utf8.t
perl-5.22.1/t/mro/basic_05_dfs.t
perl-5.22.1/t/mro/basic_05_dfs_utf8.t
perl-5.22.1/t/mro/basic_utf8.t
perl-5.22.1/t/mro/c3_with_overload.t
perl-5.22.1/t/mro/c3_with_overload_utf8.t
perl-5.22.1/t/mro/complex_c3.t
perl-5.22.1/t/mro/complex_c3_utf8.t
perl-5.22.1/t/mro/complex_dfs.t
perl-5.22.1/t/mro/complex_dfs_utf8.t
perl-5.22.1/t/mro/dbic_c3.t
perl-5.22.1/t/mro/dbic_c3_utf8.t
perl-5.22.1/t/mro/dbic_dfs.t
perl-5.22.1/t/mro/dbic_dfs_utf8.t
perl-5.22.1/t/mro/inconsistent_c3.t
perl-5.22.1/t/mro/inconsistent_c3_utf8.t
perl-5.22.1/t/mro/isa_aliases.t
perl-5.22.1/t/mro/isa_aliases_utf8.t
perl-5.22.1/t/mro/isa_c3.t
perl-5.22.1/t/mro/isa_c3_utf8.t
perl-5.22.1/t/mro/isa_dfs.t
perl-5.22.1/t/mro/isa_dfs_utf8.t
perl-5.22.1/t/mro/isarev.t
perl-5.22.1/t/mro/isarev_utf8.t
perl-5.22.1/t/mro/method_caching.t
perl-5.22.1/t/mro/method_caching_utf8.t
perl-5.22.1/t/mro/next_NEXT.t
perl-5.22.1/t/mro/next_NEXT_utf8.t
perl-5.22.1/t/mro/next_edgecases.t
perl-5.22.1/t/mro/next_edgecases_utf8.t
perl-5.22.1/t/mro/next_goto.t
perl-5.22.1/t/mro/next_goto_utf8.t
perl-5.22.1/t/mro/next_inanon.t
perl-5.22.1/t/mro/next_inanon_utf8.t
perl-5.22.1/t/mro/next_ineval.t
perl-5.22.1/t/mro/next_ineval_utf8.t
perl-5.22.1/t/mro/next_method.t
perl-5.22.1/t/mro/next_method_utf8.t
perl-5.22.1/t/mro/next_skip.t
perl-5.22.1/t/mro/next_skip_utf8.t
perl-5.22.1/t/mro/overload_c3.t
perl-5.22.1/t/mro/overload_c3_utf8.t
perl-5.22.1/t/mro/overload_dfs.t
perl-5.22.1/t/mro/package_aliases.t
perl-5.22.1/t/mro/package_aliases_utf8.t
perl-5.22.1/t/mro/pkg_gen.t
perl-5.22.1/t/mro/pkg_gen_utf8.t
perl-5.22.1/t/mro/recursion_c3.t
perl-5.22.1/t/mro/recursion_c3_utf8.t
perl-5.22.1/t/mro/recursion_dfs.t
perl-5.22.1/t/mro/recursion_dfs_utf8.t
perl-5.22.1/t/mro/vulcan_c3.t
perl-5.22.1/t/mro/vulcan_c3_utf8.t
perl-5.22.1/t/mro/vulcan_dfs.t
perl-5.22.1/t/mro/vulcan_dfs_utf8.t
perl-5.22.1/t/op/
perl-5.22.1/t/op/64bitint.t
perl-5.22.1/t/op/alarm.t
perl-5.22.1/t/op/anonconst.t
perl-5.22.1/t/op/anonsub.t
perl-5.22.1/t/op/append.t
perl-5.22.1/t/op/args.t
perl-5.22.1/t/op/array.t
perl-5.22.1/t/op/array_base.t
perl-5.22.1/t/op/assignwarn.t
perl-5.22.1/t/op/attrhand.t
perl-5.22.1/t/op/attrproto.t
perl-5.22.1/t/op/attrs.t
perl-5.22.1/t/op/auto.t
perl-5.22.1/t/op/avhv.t
perl-5.22.1/t/op/bless.t
perl-5.22.1/t/op/blocks.t
perl-5.22.1/t/op/bop.t
perl-5.22.1/t/op/caller.pl
perl-5.22.1/t/op/caller.t
perl-5.22.1/t/op/chars.t
perl-5.22.1/t/op/chdir.t
perl-5.22.1/t/op/chop.t
perl-5.22.1/t/op/chr.t
perl-5.22.1/t/op/closure.t
perl-5.22.1/t/op/closure_test.pl
perl-5.22.1/t/op/concat2.t
perl-5.22.1/t/op/cond.t
perl-5.22.1/t/op/const-optree.t
perl-5.22.1/t/op/context.t
perl-5.22.1/t/op/coreamp.t
perl-5.22.1/t/op/coresubs.t
perl-5.22.1/t/op/cproto.t
perl-5.22.1/t/op/crypt.t
perl-5.22.1/t/op/current_sub.t
perl-5.22.1/t/op/dbm.t
perl-5.22.1/t/op/defined.t
perl-5.22.1/t/op/defins.t
perl-5.22.1/t/op/delete.t
perl-5.22.1/t/op/die.t
perl-5.22.1/t/op/die_except.t
perl-5.22.1/t/op/die_exit.t
perl-5.22.1/t/op/die_keeperr.t
perl-5.22.1/t/op/die_unwind.t
perl-5.22.1/t/op/do.t
perl-5.22.1/t/op/dor.t
perl-5.22.1/t/op/dump.t
perl-5.22.1/t/op/each.t
perl-5.22.1/t/op/each_array.t
perl-5.22.1/t/op/eval.t
perl-5.22.1/t/op/evalbytes.t
perl-5.22.1/t/op/exec.t
perl-5.22.1/t/op/exists_sub.t
perl-5.22.1/t/op/exp.t
perl-5.22.1/t/op/fh.t
perl-5.22.1/t/op/filehandle.t
perl-5.22.1/t/op/filetest.t
perl-5.22.1/t/op/filetest_stack_ok.t
perl-5.22.1/t/op/filetest_t.t
perl-5.22.1/t/op/flip.t
perl-5.22.1/t/op/for.t
perl-5.22.1/t/op/fork.t
perl-5.22.1/t/op/fresh_perl_utf8.t
perl-5.22.1/t/op/getpid.t
perl-5.22.1/t/op/getppid.t
perl-5.22.1/t/op/glob.t
perl-5.22.1/t/op/gmagic.t
perl-5.22.1/t/op/goto.t
perl-5.22.1/t/op/goto_xs.t
perl-5.22.1/t/op/grent.t
perl-5.22.1/t/op/grep.t
perl-5.22.1/t/op/groups.t
perl-5.22.1/t/op/gv.t
perl-5.22.1/t/op/hash-rt85026.t
perl-5.22.1/t/op/hash.t
perl-5.22.1/t/op/hashassign.t
perl-5.22.1/t/op/hashwarn.t
perl-5.22.1/t/op/heredoc.t
perl-5.22.1/t/op/hexfp.t
perl-5.22.1/t/op/inc.t
perl-5.22.1/t/op/inccode-tie.t
perl-5.22.1/t/op/inccode.t
perl-5.22.1/t/op/incfilter.t
perl-5.22.1/t/op/index.t
perl-5.22.1/t/op/index_thr.t
perl-5.22.1/t/op/infnan.t
perl-5.22.1/t/op/int.t
perl-5.22.1/t/op/join.t
perl-5.22.1/t/op/kill0.t
perl-5.22.1/t/op/kill0_child
perl-5.22.1/t/op/kvaslice.t
perl-5.22.1/t/op/kvhslice.t
perl-5.22.1/t/op/lc.t
perl-5.22.1/t/op/leaky-magic.t
perl-5.22.1/t/op/length.t
perl-5.22.1/t/op/lex.t
perl-5.22.1/t/op/lex_assign.t
perl-5.22.1/t/op/lexsub.t
perl-5.22.1/t/op/lfs.t
perl-5.22.1/t/op/list.t
perl-5.22.1/t/op/local.t
perl-5.22.1/t/op/localref.t
perl-5.22.1/t/op/lock.t
perl-5.22.1/t/op/loopctl.t
perl-5.22.1/t/op/lop.t
perl-5.22.1/t/op/lvref.t
perl-5.22.1/t/op/magic-27839.t
perl-5.22.1/t/op/magic.t
perl-5.22.1/t/op/method.t
perl-5.22.1/t/op/mkdir.t
perl-5.22.1/t/op/multideref.t
perl-5.22.1/t/op/my.t
perl-5.22.1/t/op/my_stash.t
perl-5.22.1/t/op/mydef.t
perl-5.22.1/t/op/negate.t
perl-5.22.1/t/op/not.t
perl-5.22.1/t/op/numconvert.t
perl-5.22.1/t/op/oct.t
perl-5.22.1/t/op/or.t
perl-5.22.1/t/op/ord.t
perl-5.22.1/t/op/overload_integer.t
perl-5.22.1/t/op/override.t
perl-5.22.1/t/op/pack.t
perl-5.22.1/t/op/packagev.t
perl-5.22.1/t/op/pos.t
perl-5.22.1/t/op/postfixderef.t
perl-5.22.1/t/op/pow.t
perl-5.22.1/t/op/print.t
perl-5.22.1/t/op/protowarn.t
perl-5.22.1/t/op/push.t
perl-5.22.1/t/op/pwent.t
perl-5.22.1/t/op/qr.t
perl-5.22.1/t/op/quotemeta.t
perl-5.22.1/t/op/rand.t
perl-5.22.1/t/op/range.t
perl-5.22.1/t/op/read.t
perl-5.22.1/t/op/readdir.t
perl-5.22.1/t/op/readline.t
perl-5.22.1/t/op/recurse.t
perl-5.22.1/t/op/ref.t
perl-5.22.1/t/op/repeat.t
perl-5.22.1/t/op/require_37033.t
perl-5.22.1/t/op/require_errors.t
perl-5.22.1/t/op/require_override.t
perl-5.22.1/t/op/reset.t
perl-5.22.1/t/op/reverse.t
perl-5.22.1/t/op/rt119311.t
perl-5.22.1/t/op/runlevel.t
perl-5.22.1/t/op/select.t
perl-5.22.1/t/op/setpgrpstack.t
perl-5.22.1/t/op/sigdispatch.t
perl-5.22.1/t/op/signatures.t
perl-5.22.1/t/op/sigsystem.t
perl-5.22.1/t/op/sleep.t
perl-5.22.1/t/op/smartkve.t
perl-5.22.1/t/op/smartmatch.t
perl-5.22.1/t/op/sort.t
perl-5.22.1/t/op/splice.t
perl-5.22.1/t/op/split.t
perl-5.22.1/t/op/split_unicode.t
perl-5.22.1/t/op/sprintf.t
perl-5.22.1/t/op/sprintf2.t
perl-5.22.1/t/op/srand.t
perl-5.22.1/t/op/sselect.t
perl-5.22.1/t/op/stash.t
perl-5.22.1/t/op/stat.t
perl-5.22.1/t/op/state.t
perl-5.22.1/t/op/study.t
perl-5.22.1/t/op/studytied.t
perl-5.22.1/t/op/sub.t
perl-5.22.1/t/op/sub_lval.t
perl-5.22.1/t/op/substr.t
perl-5.22.1/t/op/substr_thr.t
perl-5.22.1/t/op/svleak.pl
perl-5.22.1/t/op/svleak.t
perl-5.22.1/t/op/switch.t
perl-5.22.1/t/op/symbolcache.t
perl-5.22.1/t/op/sysio.t
perl-5.22.1/t/op/taint.t
perl-5.22.1/t/op/threads-dirh.t
perl-5.22.1/t/op/threads.t
perl-5.22.1/t/op/threads_create.pl
perl-5.22.1/t/op/tie.t
perl-5.22.1/t/op/tie_fetch_count.t
perl-5.22.1/t/op/tiearray.t
perl-5.22.1/t/op/tiehandle.t
perl-5.22.1/t/op/time.t
perl-5.22.1/t/op/time_loop.t
perl-5.22.1/t/op/tr.t
perl-5.22.1/t/op/undef.t
perl-5.22.1/t/op/universal.t
perl-5.22.1/t/op/unlink.t
perl-5.22.1/t/op/unshift.t
perl-5.22.1/t/op/upgrade.t
perl-5.22.1/t/op/utf8cache.t
perl-5.22.1/t/op/utf8decode.t
perl-5.22.1/t/op/utf8magic.t
perl-5.22.1/t/op/utfhash.t
perl-5.22.1/t/op/utftaint.t
perl-5.22.1/t/op/vec.t
perl-5.22.1/t/op/ver.t
perl-5.22.1/t/op/waitpid.t
perl-5.22.1/t/op/wantarray.t
perl-5.22.1/t/op/warn.t
perl-5.22.1/t/op/while.t
perl-5.22.1/t/op/write.t
perl-5.22.1/t/op/yadayada.t
perl-5.22.1/t/opbasic/
perl-5.22.1/t/opbasic/arith.t
perl-5.22.1/t/opbasic/cmp.t
perl-5.22.1/t/opbasic/concat.t
perl-5.22.1/t/opbasic/magic_phase.t
perl-5.22.1/t/opbasic/qq.t
perl-5.22.1/t/perf/
perl-5.22.1/t/perf/benchmarks
perl-5.22.1/t/perf/benchmarks.t
perl-5.22.1/t/perf/opcount.t
perl-5.22.1/t/perf/optree.t
perl-5.22.1/t/perf/speed.t
perl-5.22.1/t/perf/taint.t
perl-5.22.1/t/perl.supp
perl-5.22.1/t/porting/
perl-5.22.1/t/porting/FindExt.t
perl-5.22.1/t/porting/args_assert.t
perl-5.22.1/t/porting/authors.t
perl-5.22.1/t/porting/bench.t
perl-5.22.1/t/porting/bincompat.t
perl-5.22.1/t/porting/checkcase.t
perl-5.22.1/t/porting/checkcfgvar.t
perl-5.22.1/t/porting/cmp_version.t
perl-5.22.1/t/porting/copyright.t
perl-5.22.1/t/porting/corelist.t
perl-5.22.1/t/porting/customized.dat
perl-5.22.1/t/porting/customized.t
perl-5.22.1/t/porting/diag.t
perl-5.22.1/t/porting/dual-life.t
perl-5.22.1/t/porting/exec-bit.t
perl-5.22.1/t/porting/extrefs.t
perl-5.22.1/t/porting/filenames.t
perl-5.22.1/t/porting/globvar.t
perl-5.22.1/t/porting/known_pod_issues.dat
perl-5.22.1/t/porting/libperl.t
perl-5.22.1/t/porting/maintainers.t
perl-5.22.1/t/porting/manifest.t
perl-5.22.1/t/porting/pending-author.t
perl-5.22.1/t/porting/perlfunc.t
perl-5.22.1/t/porting/pod_rules.t
perl-5.22.1/t/porting/podcheck.t
perl-5.22.1/t/porting/re_context.t
perl-5.22.1/t/porting/readme.t
perl-5.22.1/t/porting/regen.t
perl-5.22.1/t/porting/ss_dup.t
perl-5.22.1/t/porting/test_bootstrap.t
perl-5.22.1/t/porting/utils.t
perl-5.22.1/t/re/
perl-5.22.1/t/re/charset.t
perl-5.22.1/t/re/fold_grind.t
perl-5.22.1/t/re/no_utf8_pm.t
perl-5.22.1/t/re/overload.t
perl-5.22.1/t/re/pat.t
perl-5.22.1/t/re/pat_advanced.t
perl-5.22.1/t/re/pat_advanced_thr.t
perl-5.22.1/t/re/pat_psycho.t
perl-5.22.1/t/re/pat_psycho_thr.t
perl-5.22.1/t/re/pat_re_eval.t
perl-5.22.1/t/re/pat_re_eval_thr.t
perl-5.22.1/t/re/pat_rt_report.t
perl-5.22.1/t/re/pat_rt_report_thr.t
perl-5.22.1/t/re/pat_special_cc.t
perl-5.22.1/t/re/pat_special_cc_thr.t
perl-5.22.1/t/re/pat_thr.t
perl-5.22.1/t/re/pos.t
perl-5.22.1/t/re/qr-72922.t
perl-5.22.1/t/re/qr.t
perl-5.22.1/t/re/qr_gc.t
perl-5.22.1/t/re/qrstack.t
perl-5.22.1/t/re/re_tests
perl-5.22.1/t/re/recompile.t
perl-5.22.1/t/re/reg_60508.t
perl-5.22.1/t/re/reg_email.t
perl-5.22.1/t/re/reg_email_thr.t
perl-5.22.1/t/re/reg_eval.t
perl-5.22.1/t/re/reg_eval_scope.t
perl-5.22.1/t/re/reg_fold.t
perl-5.22.1/t/re/reg_mesg.t
perl-5.22.1/t/re/reg_namedcapture.t
perl-5.22.1/t/re/reg_nc_tie.t
perl-5.22.1/t/re/reg_nocapture.t
perl-5.22.1/t/re/reg_pmod.t
perl-5.22.1/t/re/reg_posixcc.t
perl-5.22.1/t/re/regex_sets.t
perl-5.22.1/t/re/regex_sets_compat.t
perl-5.22.1/t/re/regexp.t
perl-5.22.1/t/re/regexp_noamp.t
perl-5.22.1/t/re/regexp_notrie.t
perl-5.22.1/t/re/regexp_qr.t
perl-5.22.1/t/re/regexp_qr_embed.t
perl-5.22.1/t/re/regexp_qr_embed_thr.t
perl-5.22.1/t/re/regexp_trielist.t
perl-5.22.1/t/re/regexp_unicode_prop.t
perl-5.22.1/t/re/regexp_unicode_prop_thr.t
perl-5.22.1/t/re/rt122747.t
perl-5.22.1/t/re/rxcode.t
perl-5.22.1/t/re/speed.t
perl-5.22.1/t/re/speed_thr.t
perl-5.22.1/t/re/subst.t
perl-5.22.1/t/re/substT.t
perl-5.22.1/t/re/subst_amp.t
perl-5.22.1/t/re/subst_wamp.t
perl-5.22.1/t/re/uniprops.t
perl-5.22.1/t/run/
perl-5.22.1/t/run/cloexec.t
perl-5.22.1/t/run/dtrace.pl
perl-5.22.1/t/run/dtrace.t
perl-5.22.1/t/run/exit.t
perl-5.22.1/t/run/flib/
perl-5.22.1/t/run/flib/broken.pm
perl-5.22.1/t/run/flib/t2.pm
perl-5.22.1/t/run/flib/t2.pmc
perl-5.22.1/t/run/fresh_perl.t
perl-5.22.1/t/run/locale.t
perl-5.22.1/t/run/noswitch.t
perl-5.22.1/t/run/runenv.t
perl-5.22.1/t/run/script.t
perl-5.22.1/t/run/switch0.t
perl-5.22.1/t/run/switchC.t
perl-5.22.1/t/run/switchF.t
perl-5.22.1/t/run/switchF1.t
perl-5.22.1/t/run/switchF2.t
perl-5.22.1/t/run/switchI.t
perl-5.22.1/t/run/switchM.t
perl-5.22.1/t/run/switcha.t
perl-5.22.1/t/run/switchd-78586.t
perl-5.22.1/t/run/switchd.t
perl-5.22.1/t/run/switches.t
perl-5.22.1/t/run/switchn.t
perl-5.22.1/t/run/switchp.t
perl-5.22.1/t/run/switcht.t
perl-5.22.1/t/run/switchx.aux
perl-5.22.1/t/run/switchx.t
perl-5.22.1/t/run/switchx2.aux
perl-5.22.1/t/run/switchx3.aux
perl-5.22.1/t/test.pl
perl-5.22.1/t/test_pl/
perl-5.22.1/t/test_pl/_num_to_alpha.t
perl-5.22.1/t/test_pl/can_isa_ok.t
perl-5.22.1/t/test_pl/plan_skip_all.t
perl-5.22.1/t/test_pl/tempfile.t
perl-5.22.1/t/thread_it.pl
perl-5.22.1/t/uni/
perl-5.22.1/t/uni/attrs.t
perl-5.22.1/t/uni/bless.t
perl-5.22.1/t/uni/cache.t
perl-5.22.1/t/uni/caller.t
perl-5.22.1/t/uni/case.pl
perl-5.22.1/t/uni/chomp.t
perl-5.22.1/t/uni/chr.t
perl-5.22.1/t/uni/class.t
perl-5.22.1/t/uni/eval.t
perl-5.22.1/t/uni/fold.t
perl-5.22.1/t/uni/goto.t
perl-5.22.1/t/uni/greek.t
perl-5.22.1/t/uni/gv.t
perl-5.22.1/t/uni/labels.t
perl-5.22.1/t/uni/latin2.t
perl-5.22.1/t/uni/lex_utf8.t
perl-5.22.1/t/uni/lower.t
perl-5.22.1/t/uni/method.t
perl-5.22.1/t/uni/opcroak.t
perl-5.22.1/t/uni/overload.t
perl-5.22.1/t/uni/package.t
perl-5.22.1/t/uni/parser.t
perl-5.22.1/t/uni/readline.t
perl-5.22.1/t/uni/select.t
perl-5.22.1/t/uni/sprintf.t
perl-5.22.1/t/uni/stash.t
perl-5.22.1/t/uni/tie.t
perl-5.22.1/t/uni/title.t
perl-5.22.1/t/uni/tr_7jis.t
perl-5.22.1/t/uni/tr_eucjp.t
perl-5.22.1/t/uni/tr_sjis.t
perl-5.22.1/t/uni/tr_utf8.t
perl-5.22.1/t/uni/universal.t
perl-5.22.1/t/uni/upper.t
perl-5.22.1/t/uni/variables.t
perl-5.22.1/t/uni/write.t
perl-5.22.1/t/win32/
perl-5.22.1/t/win32/fs.t
perl-5.22.1/t/win32/popen.t
perl-5.22.1/t/win32/runenv.t
perl-5.22.1/t/win32/signal.t
perl-5.22.1/t/win32/system.t
perl-5.22.1/t/win32/system_tests
perl-5.22.1/taint.c
perl-5.22.1/thread.h
perl-5.22.1/time64.c
perl-5.22.1/time64.h
perl-5.22.1/time64_config.h
perl-5.22.1/toke.c
perl-5.22.1/uconfig.h
perl-5.22.1/uconfig.sh
perl-5.22.1/uconfig64.sh
perl-5.22.1/unicode_constants.h
perl-5.22.1/universal.c
perl-5.22.1/unixish.h
perl-5.22.1/utf8.c
perl-5.22.1/utf8.h
perl-5.22.1/utfebcdic.h
perl-5.22.1/util.c
perl-5.22.1/util.h
perl-5.22.1/utils/
perl-5.22.1/utils.lst
perl-5.22.1/utils/Makefile.PL
perl-5.22.1/utils/c2ph.PL
perl-5.22.1/utils/corelist.PL
perl-5.22.1/utils/cpan.PL
perl-5.22.1/utils/enc2xs.PL
perl-5.22.1/utils/encguess.PL
perl-5.22.1/utils/h2ph.PL
perl-5.22.1/utils/h2xs.PL
perl-5.22.1/utils/instmodsh.PL
perl-5.22.1/utils/json_pp.PL
perl-5.22.1/utils/libnetcfg.PL
perl-5.22.1/utils/perlbug.PL
perl-5.22.1/utils/perldoc.PL
perl-5.22.1/utils/perlivp.PL
perl-5.22.1/utils/piconv.PL
perl-5.22.1/utils/pl2pm.PL
perl-5.22.1/utils/pod2html.PL
perl-5.22.1/utils/prove.PL
perl-5.22.1/utils/ptar.PL
perl-5.22.1/utils/ptardiff.PL
perl-5.22.1/utils/ptargrep.PL
perl-5.22.1/utils/shasum.PL
perl-5.22.1/utils/splain.PL
perl-5.22.1/utils/xsubpp.PL
perl-5.22.1/utils/zipdetails.PL
perl-5.22.1/vms/
perl-5.22.1/vms/descrip_mms.template
perl-5.22.1/vms/gen_shrfls.pl
perl-5.22.1/vms/genopt.com
perl-5.22.1/vms/make_command.com
perl-5.22.1/vms/mms2make.pl
perl-5.22.1/vms/munchconfig.c
perl-5.22.1/vms/myconfig.com
perl-5.22.1/vms/test.com
perl-5.22.1/vms/vms.c
perl-5.22.1/vms/vmsish.h
perl-5.22.1/vms/vmspipe.com
perl-5.22.1/vos/
perl-5.22.1/vos/Changes
perl-5.22.1/vos/compile_full_perl.cm
perl-5.22.1/vos/configure_full_perl.sh
perl-5.22.1/vos/make_full_perl.sh
perl-5.22.1/vos/vos.c
perl-5.22.1/vos/vosish.h
perl-5.22.1/vutil.c
perl-5.22.1/vutil.h
perl-5.22.1/vxs.inc
perl-5.22.1/warnings.h
perl-5.22.1/win32/
perl-5.22.1/win32/FindExt.pm
perl-5.22.1/win32/Makefile
perl-5.22.1/win32/Makefile.ce
perl-5.22.1/win32/bin/
perl-5.22.1/win32/bin/exetype.pl
perl-5.22.1/win32/bin/perlglob.pl
perl-5.22.1/win32/bin/pl2bat.pl
perl-5.22.1/win32/bin/runperl.pl
perl-5.22.1/win32/bin/search.pl
perl-5.22.1/win32/ce-helpers/
perl-5.22.1/win32/ce-helpers/cecopy-lib.pl
perl-5.22.1/win32/ce-helpers/comp.pl
perl-5.22.1/win32/ce-helpers/compile-all.bat
perl-5.22.1/win32/ce-helpers/compile.bat
perl-5.22.1/win32/ce-helpers/makedist.pl
perl-5.22.1/win32/ce-helpers/registry.bat
perl-5.22.1/win32/ce-helpers/sdsdkenv.bat
perl-5.22.1/win32/config.ce
perl-5.22.1/win32/config.gc
perl-5.22.1/win32/config.vc
perl-5.22.1/win32/config_H.ce
perl-5.22.1/win32/config_H.gc
perl-5.22.1/win32/config_H.vc
perl-5.22.1/win32/config_h.PL
perl-5.22.1/win32/config_sh.PL
perl-5.22.1/win32/create_perllibst_h.pl
perl-5.22.1/win32/distclean.bat
perl-5.22.1/win32/fcrypt.c
perl-5.22.1/win32/include/
perl-5.22.1/win32/include/arpa/
perl-5.22.1/win32/include/arpa/inet.h
perl-5.22.1/win32/include/dirent.h
perl-5.22.1/win32/include/netdb.h
perl-5.22.1/win32/include/sys/
perl-5.22.1/win32/include/sys/errno2.h
perl-5.22.1/win32/include/sys/socket.h
perl-5.22.1/win32/list_static_libs.pl
perl-5.22.1/win32/makefile.mk
perl-5.22.1/win32/perl.rc
perl-5.22.1/win32/perlexe.ico
perl-5.22.1/win32/perlexe.manifest
perl-5.22.1/win32/perlexe.rc
perl-5.22.1/win32/perlglob.c
perl-5.22.1/win32/perlhost.h
perl-5.22.1/win32/perllib.c
perl-5.22.1/win32/perlmaince.c
perl-5.22.1/win32/pod.mak
perl-5.22.1/win32/runperl.c
perl-5.22.1/win32/vdir.h
perl-5.22.1/win32/vmem.h
perl-5.22.1/win32/win32.c
perl-5.22.1/win32/win32.h
perl-5.22.1/win32/win32ceio.c
perl-5.22.1/win32/win32io.c
perl-5.22.1/win32/win32iop-o.h
perl-5.22.1/win32/win32iop.h
perl-5.22.1/win32/win32sck.c
perl-5.22.1/win32/win32thread.c
perl-5.22.1/win32/win32thread.h
perl-5.22.1/win32/wince.c
perl-5.22.1/win32/wince.h
perl-5.22.1/win32/wincesck.c
perl-5.22.1/write_buildcustomize.pl
phase `unpack' succeeded after 1.1 seconds
starting phase `patch-usr-bin-file'
phase `patch-usr-bin-file' succeeded after 0.1 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./Configure: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Configure.orig: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Cross/Makefile-cross-SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Cross/cflags-cross-arm: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Cross/config.sh-arm-linux: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Cross/config.sh-arm-linux-n770: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Cross/generate_config_sh: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Cross/warp: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Makefile.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Policy_sh.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Porting/GitUtils.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/Maintainers: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/Maintainers.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/acknowledgements.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/add-package.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/bench.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/bisect-example.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Porting/bisect-runner.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/bisect.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/bump-perl-version: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/check-cpan-pollution: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/check83.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/checkAUTHORS.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/checkURL.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/checkVERSION.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/checkansi.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/checkcfgvar.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/checkpodencoding.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/cherrymaint: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/cmpVERSION.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/config.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Porting/config_h.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/core-cpan-diff: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/corecpan.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/corelist-perldelta.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/corelist.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/exercise_makedef.pl: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./Porting/expand-macro.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/findrfuncs: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/git-deltatool: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/git-find-p4-change: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/git-make-p4-refs: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Porting/make-rmg-checklist: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/make_dot_patch.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/make_modlib_cpan.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/make_snapshot.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/makemeta: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/makerel: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/manicheck: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/manisort: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/new-perldelta.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/newtests-perldelta.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/perlhist_calculate.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/pod_lib.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/pod_rules.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/podtidy: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/rt_list_patches: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./Porting/sort_perldiag.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/sync-with-cpan: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./Porting/valgrindpp.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./autodoc.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cflags.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./config_h.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./configpm: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./configure.gnu: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./cpan/Archive-Tar/bin/ptar: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Archive-Tar/bin/ptardiff: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Archive-Tar/bin/ptargrep: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/AutoLoader/t/01AutoLoader.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/B-Debug/t/debug.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/CPAN-Meta-YAML/t/tml: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/CPAN-Meta/t/merge.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/CPAN/scripts/cpan: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/CPAN/t/01loadme.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/CPAN/t/02nox.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/CPAN/t/11mirroredby.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Compress-Raw-Bzip2/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Compress-Raw-Zlib/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/V.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/10_base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/20_plv56.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/21_plv58.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/22_plv510.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/23_plv512.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/24_plv514.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/25_plv516.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/25_plv5162.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/26_plv518.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/26_plv5182.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Config-Perl-V/t/27_plv5200.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/DB_File/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/DB_File/dbinfo: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/DB_File/t/db-btree.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/DB_File/t/db-hash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/DB_File/t/db-recno.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/devel/buildperl.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/devel/mkapidoc.sh: changing `/bin/bash' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/bash'
patch-shebang: ./cpan/Devel-PPPort/devel/mktodo: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/devel/mktodo.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/devel/regenerate: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/devel/scanprov: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/parts/apicheck.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Devel-PPPort/soak: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest-MD5/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest-MD5/t/bits.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest-MD5/t/clone.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest-MD5/t/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest-SHA/shasum: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest/t/base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest/t/digest.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest/t/file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Digest/t/security.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/enc2xs: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/encguess: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/piconv: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/ucm2table: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/ucmlint: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/ucmsort: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/bin/unidump: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/t/Aliases.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/t/grow.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/t/rt.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/t/unibench.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Encode/t/utf8strict.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Command/t/cp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Command/t/eu_command.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Constant/t/Constant.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Install/t/Install.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Install/t/InstallWithMM.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Install/t/Installapi2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Install/t/Installed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Install/t/Packlist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Install/t/can_write_dir.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/bin/instmodsh: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/00compile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/01perl_bugs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/FIRST_MAKEFILE.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/INST.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/INSTALL_BASE.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/Liblist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_Any.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_BeOS.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_Cygwin.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_NW5.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_OS2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_Unix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_VMS.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MM_Win32.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/MakeMaker_Parameters.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/Mkbootstrap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/PL_FILES.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/VERSION_FROM.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/WriteEmptyMakefile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/arch_check.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/backwards.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/build_man.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/cd.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/config.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/dir_target.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/echo.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/fix_libs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/fixin.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/hints.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/installed_file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/is_of_type.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/make.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/maketext_filter.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/metafile_file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/min_perl_version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/miniperl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/oneliner.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/parse_abstract.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/parse_version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/pm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/pm_to_blib.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/pod2man.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/postamble.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/prefixify.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/prereq.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/prereq_print.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/prompt.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/recurs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/revision.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/several_authors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/split_command.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/test_boilerplate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/testlib.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/vstrings.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/writemakefile_args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-MakeMaker/t/xs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/ExtUtils-Manifest/t/Manifest.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Path/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/cmp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/fork.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/lock.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/mktemp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/object.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/posix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/rmtree.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/security.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/File-Temp/t/tempfile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Getopt-Long/lib/Getopt/Long.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Getopt-Long/t/gol-basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Getopt-Long/t/gol-linkage.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Getopt-Long/t/gol-oo.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Getopt-Long/t/gol-xargv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Getopt-Long/t/gol-xstring.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/000_load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/001_api.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/002_croakage.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/003_agent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/010_url.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/020_headers.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/030_response.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/040_content.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/050_chunked_body.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/060_http_date.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/070_cookie_jar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/100_get.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/101_head.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/102_put.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/103_delete.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/104_post.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/110_mirror.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/130_redirect.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/140_proxy.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/141_no_proxy.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/150_post_form.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/160_cookies.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/161_basic_auth.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/162_proxy_auth.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/HTTP-Tiny/t/170_keepalive.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Compress/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Compress/bin/zipdetails: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/00use.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/01local-client-v4.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/02local-server-v4.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/03local-cross-v4.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/04local-client-v6.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/05local-server-v6.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/06local-cross-v6.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/10args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/11sockopts.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/12port-fallback.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/13addrinfo.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/14fileno.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/15io-socket.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/16v6only.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/17gai-flags.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/18fdopen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/19no-addrs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/20subclass.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/21as-inet.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/22timeout.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/30nonblocking-connect.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/31nonblocking-connect-internet.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IO-Socket-IP/t/99pod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/IPC-Cmd/t/03_run-forked.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/bin/json_pp: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/006_pc_pretty.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/018_json_checker.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/019_incr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/020_unknown.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/113_overloaded_eq.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/114_decode_prefix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/116_incr_parse_fixed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/JSON-PP/t/zero-mojibake.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/alias_code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/alias_code_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2country.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2country_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2currency.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2langext.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2langfam.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2language.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2langvar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/code2script.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/country.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/country2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/country2code_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/country_code2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/country_code2code_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/country_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/currency2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/currency2code_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/langext2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/langfam2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/language.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/language2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/language_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/langvar2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/script2code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/script2code_old.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Codes/t/testfunc.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Locale-Maketext-Simple/t/0-signature.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/MIME-Base64/t/length.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Math-Complex/t/Complex.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Math-Complex/t/Trig.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/array.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/array_confusion.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/correctness.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/errors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/expfile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/expire.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/expmod_n.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/expmod_t.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/flush.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/normalize.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/prototype.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/speed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/tie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/tie_gdbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/tie_ndbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/tie_sdbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/tie_storable.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/tiefeatures.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Memoize/t/unmemoize.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Module-Load/t/02_Module-Load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Module-Metadata/t/encoding.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Module-Metadata/t/metadata.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Module-Metadata/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Parse-CPAN-Meta/t/02_api.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Parse-CPAN-Meta/t/03_functions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Parse-CPAN-Meta/t/04_export.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Parse-CPAN-Meta/t/05_errors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Checker/scripts/podchecker.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Checker/t/pod/podchkenc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Checker/t/pod/selfcheck.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Parser/scripts/podselect.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Parser/t/pod/contains_pod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Parser/t/pod/selfcheck.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/eol.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/eol2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/output.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/strpvbtm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/xhtml-bkb.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/xhtml01.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/xhtml05.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/xhtml10.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/xhtml15.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Simple/t/xhtml20.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Usage/scripts/pod2usage.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Pod-Usage/t/pod/pod2usage2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/00version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/any-all.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/blessed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/dualvar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/first.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/getmagic-once.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/isvstring.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/lln.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/max.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/maxstr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/min.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/minstr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/openhan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/pair.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/product.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/prototype.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/readonly.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/reduce.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/refaddr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/reftype.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/scalarutil-proto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/shuffle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/stack-corruption.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/sum.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/sum0.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/tainted.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Scalar-List-Utils/t/weak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Socket/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Socket/t/Socket.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Socket/t/sockaddr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Socket/t/socketpair.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Sys-Syslog/t/00-load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Sys-Syslog/t/constants.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Sys-Syslog/t/facilities-routing.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Sys-Syslog/t/syslog.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Sys-Syslog/win32/compile.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-ANSIColor/t/module/aliases-func.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-ANSIColor/t/module/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-ANSIColor/t/module/basic256.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-ANSIColor/t/module/eval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-ANSIColor/t/module/stringify.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-ANSIColor/t/taint/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Term-Cap/test.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/bin/prove: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/aggregator.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/bailout.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/callbacks.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/env.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/env_opts.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/failure.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/inc-propagation.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/inc_taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/regression.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/subclass.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/switches.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/test-harness-compat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/compat/version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/errors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/glob-to-regexp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/grammar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/harness-bailout.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/harness-subclass.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/harness.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/iterator_factory.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/iterators.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/multiplexer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/nested.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/nofork-mux.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/nofork.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/object.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/parse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/parser-config.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/parser-subclass.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/perl5lib.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/premature-bailout.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/process.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/prove.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/proverc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/proverun.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/proveversion.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/regression.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/results.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/sample-tests/inc_taint: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/sample-tests/no_output: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/sample-tests/segfault: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/sample-tests/shbang_misparse: warning: no binary for interpreter `perl-latest' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/sample-tests/taint: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/sample-tests/taint_warn: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/scheduler.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_handler.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/harness: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/harness_badtap: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/harness_complain: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/harness_directives: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/harness_failure: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/source: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/source.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/source.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./cpan/Test-Harness/t/source_tests/source.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/source_tests/source_args.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./cpan/Test-Harness/t/spool.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/state.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/state_results.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/streams.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/subclass_tests/non_perl_source: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./cpan/Test-Harness/t/subclass_tests/perl_source: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/testargs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/unicode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/yamlish-output.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/yamlish-writer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Harness/t/yamlish.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/00test_harness_check.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/BEGIN_require_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/BEGIN_use_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/Builder.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/carp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/create.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/current_test.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/current_test_without_plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/details.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/done_testing.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/done_testing_double.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/done_testing_plan_mismatch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/done_testing_with_no_plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/done_testing_with_number.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/done_testing_with_plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/fork_with_new_stdout.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/has_plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/has_plan2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/is_fh.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/is_passing.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/maybe_regex.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/no_diag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/no_plan_at_all.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/ok_obj.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/output.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/reset.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/reset_outputs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Builder/try.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/More.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Simple/load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_01basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_02fhrestore.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_03die.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_04line_num.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_05faildiag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_06errormess.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_07args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_08subtest.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_09do.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/Tester/tbt_09do_script.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/bad_plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/bail_out.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/buffer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/c_flag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/circular_data.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/cmp_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/dependents.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/diag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/died.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/dont_overwrite_die_handler.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/eq_set.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/exit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/explain.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/extra.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/extra_one.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/fail-like.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/fail-more.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/fail.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/fail_one.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/filehandles.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/fork.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/harness_active.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/is_deeply_dne_bug.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/is_deeply_fail.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/is_deeply_with_threads.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/new_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/no_plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/no_tests.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/note.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/overload_threads.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/plan_bad.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/plan_is_noplan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/plan_shouldnt_import.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/require_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/skip.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/skipall.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/bail_out.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/die.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/do.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/exceptions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/fork.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/implicit_done.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/line_numbers.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/plan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/predicate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/singleton.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/threads.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/todo.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/subtest/wstat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/tbm_doesnt_set_exported_to.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/thread_taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/threads.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/todo.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/undef.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/use_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test-Simple/t/versions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test/t/multiline.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Test/t/qr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Balanced/t/01_compile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Balanced/t/06_extqlk.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-ParseWords/t/ParseWords.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-ParseWords/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/37000.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/39548.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/79766.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/Jacobson.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/Jacobson2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/Jochen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/Tabs-ElCid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/Wrap-JLB.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/belg4mit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/fill.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/sep.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/sep2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/tabs.t: warning: no binary for interpreter `perl5.004_01' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/wrap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Text-Tabs/t/wrap_separator2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Tie-RefHash/t/rebless.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Tie-RefHash/t/refhash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Tie-RefHash/t/storable.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Tie-RefHash/t/threaded.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Time-HiRes/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Time-Local/t/Local.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Time-Piece/t/06subclass.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Unicode-Collate/mkheader: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Win32API-File/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Win32API-File/t/file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/Win32API-File/t/tie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/00-load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/Fatal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/autodie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/backcompat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/basic_exceptions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/binmode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/blog_hints.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/caller.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/chmod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/chown.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/context.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/context_lexical.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/core-trampoline-slurp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/crickey.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/dbmopen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/eval_error.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/exception_class.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/exceptions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/exec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/filehandles.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/fileno.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/flock.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/format-clobber.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/hints.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/hints_insist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/hints_pod_examples.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/hints_provider_does.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/hints_provider_easy_does_it.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/hints_provider_isa.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/import-into.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/internal-backcompat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/internal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/kill.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/lethal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/mkdir.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/no_carp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/open.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/read.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/recv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/repeat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/rt-74246.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/scope_leak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/skip.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/string-eval-basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/string-eval-leak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/sysopen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/truncate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/unlink.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/user-context.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/usersub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/utf8_open.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/utime.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/autodie/t/version_tag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/encoding-warnings/t/1-warning.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/encoding-warnings/t/2-fatal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/experimental/t/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/config.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/datasend.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/ftp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/hostname.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/netrc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/nntp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/nntp_ipv6.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/nntp_ssl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/pop3_ipv6.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/pop3_ssl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/require.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/smtp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/smtp_ipv6.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/smtp_ssl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/libnet/t/time.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/compile-time-file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/compile-time.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/parent-classfromclassfile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/parent-classfromfile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/parent-pmc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/parent-returns-false.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/parent/t/parent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/scripts/pod2man.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/scripts/pod2text.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/color.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/devise-date.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/filehandle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/man-empty.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/man-heading.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/man-options.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/man-perlio.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/man-utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/man.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/overstrike.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/parselink.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/pod-parser.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/pod-spelling.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/pod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/termcap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/text-empty.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/text-encoding.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/text-options.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/text-perlio.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/text-utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/podlators/t/text.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/lib/version.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/00impl-pp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/01base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/02derived.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/03require.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/04strict_lax.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/05sigdie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/06noop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/07locale.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/08_corelist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./cpan/version/t/coretests.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/demo/demo.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/demo/demo2.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/demo/demo_call.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/demo/demo_chain.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/demo/demo_phases.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/t/data_convert.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/t/linerep.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Attribute-Handlers/t/multi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Carp/t/stash_deletion.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/bless.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/bless_var_method.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/bugs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/deparse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/dumper.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/dumpperl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/freezer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/freezer_useperl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/indent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/misc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/names.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/pair.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/perl-74170.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/purity_deepcopy_maxdepth.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/qr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/quotekeys.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/recurse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/seen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/sortkeys.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/sparseseen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/terse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/toaster.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Data-Dumper/t/values.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Devel-SelfStubber/t/Devel-SelfStubber.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Dumpvalue/t/Dumpvalue.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Env/t/array.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Env/t/env.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Exporter/t/Exporter.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Exporter/t/warn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-CBuilder/t/00-have-compiler.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-CBuilder/t/01-basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-CBuilder/t/02-link.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-CBuilder/t/03-cplusplus.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-CBuilder/t/04-base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/lib/ExtUtils/xsubpp: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/001-basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/002-more.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/003-usage.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/101-standard_typemap_locations.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/102-trim_whitespace.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/103-tidy_type.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/104-map_type.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/105-valid_proto_string.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/106-process_typemaps.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/108-map_type.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/109-standard_XS_defs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/110-assign_func_args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/111-analyze_preprocessor_statements.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/112-set_cond.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/113-check_cond_preproc_statements.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/114-blurt_death_Warn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/115-avoid-noise.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/501-t-compile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/510-t-bare.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/511-t-whitespace.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/512-t-file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/513-t-merge.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/514-t-embed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/515-t-cmd.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/516-t-clone.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/517-t-targetable.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/ExtUtils-ParseXS/t/600-t-compat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/I18N-Collate/t/I18N-Collate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/IO.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/cachepropagate-tcp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/cachepropagate-udp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/cachepropagate-unix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_dir.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_dup.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_file.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_file_export.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_linenum.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_multihomed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_pipe.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_poll.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_sel.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_sock.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_tell.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_udp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_unix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_utf8argv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/IO/t/io_xs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/01_about_verbose.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/09_compile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/10_make.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/20_get.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/40_super.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/50_super.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/60_super.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/70_fail_auto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/90_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Locale-Maketext/t/91_backslash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt-FastCalc/t/bigintfc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt-FastCalc/t/bootstrap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt-FastCalc/t/leak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt-FastCalc/t/mbi_rand.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/Math/BigFloat/Subclass.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/Math/BigInt/Subclass.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/_e_math.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bare_mbf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bare_mbi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bare_mif.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/big_pi_e.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bigfltpm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bigintc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bigintpm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bigints.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/biglog.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/bigroot.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/calling.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/config.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/const_mbf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/constant.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/downgrade.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/inf_nan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/isa.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/lib_load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/mbf_ali.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/mbi_ali.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/mbi_rand.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/mbimbf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/nan_cmp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/new_overloaded.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/req_mbf0.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/req_mbf1.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/req_mbfa.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/req_mbfi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/req_mbfn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/req_mbfw.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/require.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/round.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/rt-16221.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/sub_ali.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/sub_mbf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/sub_mbi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/sub_mif.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/trap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/upgrade.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/upgrade2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/upgradef.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/use.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/use_lib1.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/use_lib2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/use_lib3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/use_lib4.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/use_mbfw.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigInt/t/with_sub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/big_ap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/bigfltrt.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/biglog.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/bigrat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/bigratpm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/bigratup.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/bigroot.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/hang.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/requirer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Math-BigRat/t/trap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/corelist: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/identify-dependencies: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/t/corelist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/t/deprecated.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/t/find_modules.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/t/is_core.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Module-CoreList/t/pod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/Functions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/Spec-taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/Spec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/abs2rel.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/crossplatform.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/cwd.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/rel2abs2rel.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/PathTools/t/win32.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safe1.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safe2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safe3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safeload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safeops.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/saferegexp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safesecurity.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safesort.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safeuniversal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safeutf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Safe/t/safewrap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Search-Dict/t/Dict.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/SelfLoader/t/03taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/attach.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/attach_errors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/attach_singleton.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/blessed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/canonical.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/circular_hook.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/code.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/compat01.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/compat06.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/croak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/dclone.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/downgrade.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/file_magic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/forgive.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/freeze.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/integer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/interwork56.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/just_plain_nasty.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/leaks.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/lock.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/make_56_interwork.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/make_downgrade.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/make_overload.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/malice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/recurse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/restrict.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/retrieve.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/robust.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/sig_die.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/store.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/testlib.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/tied.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/tied_hook.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/tied_items.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/tied_store.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/utf8hash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Storable/t/weak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Term-Complete/t/Complete.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Term-ReadLine/t/AE.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Term-ReadLine/t/AETk.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Term-ReadLine/t/ReadLine.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Term-ReadLine/t/Tk.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Text-Abbrev/t/Abbrev.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/00_version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/01_gen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/02_fetchsize.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/03_longfetch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/04_splice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/05_size.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/06_fixrec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/07_rv_splice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/08_ro.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/09_gen_rs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/10_splice_rs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/11_rv_splice_rs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/12_longfetch_rs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/13_size_rs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/14_lock.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/15_pushpop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/16_handle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/17_misc_meth.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/18_rs_fixrec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/19_cache.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/20_cache_full.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/21_win32.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/22_autochomp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/23_rv_ac_splice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/24_cache_loop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/25_gen_nocache.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/26_twrite.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/27_iwrite.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/28_mtwrite.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/29_downcopy.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/29a_upcopy.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/30_defer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/31_autodefer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/32_defer_misc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/33_defer_vs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/40_abs_cache.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/41_heap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/Tie-File/t/42_offset.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/XSLoader/t/XSLoader.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/autouse/t/autouse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/base-open-chunk.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/base-open-line.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/compile-time.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/core-global.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/fields-5_8_0.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/fields-base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/fields.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/isa.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/sigdie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/base/t/warnings.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/lib/Math/BigFloat/Trace.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/lib/Math/BigInt/Trace.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/big_e_pi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bigexp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bigint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bignum.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bigrat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bii_e_pi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/biinfnan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bir_e_pi.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bn_lite.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/bninfnan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/br_lite.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/brinfnan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/in_effect.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/option_a.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/option_l.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/option_p.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/overrides.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/ratopt_a.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/scope_f.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/scope_i.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/bignum/t/scope_r.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/constant/t/constant.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/constant/t/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/if/t/if.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./dist/lib/t/01lib.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./djgpp/djgppsed.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./djgpp/fixpmain: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/b.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/concise-xs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/concise.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/f_map: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/f_map.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/f_sort: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/f_sort.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/o.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_check.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_concise.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_constants.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_misc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_samples.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_sort.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_specials.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/optree_varinit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/pragma.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/showlex.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/terse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/walkoptree.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/B/t/xref.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Devel-Peek/t/Peek.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/DynaLoader/t/DynaLoader.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Errno/t/Errno.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Fcntl/t/autoload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Fcntl/t/fcntl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Fcntl/t/mode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-DosGlob/lib/File/DosGlob.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-DosGlob/t/DosGlob.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Find/t/find.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Find/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Glob/t/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Glob/t/case.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Glob/t/global.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Glob/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/File-Glob/t/threads.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/01open.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/02maxopen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/03append.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/04twoarg.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/05override.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/06export.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/FileCache/t/07noimport.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/GDBM_File/t/fatal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/GDBM_File/t/gdbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/01_load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/02_function.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/03_class.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/04_thread.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/05_perlhook.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/11_hashassign.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util-FieldHash/t/12_hashwarn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Hash-Util/t/Util.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/I18N-Langinfo/t/Langinfo.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/IPC-Open3/t/IPC-Open2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/IPC-Open3/t/IPC-Open3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/IPC-Open3/t/fd.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/NDBM_File/t/ndbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/ODBM_File/t/odbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Opcode/t/Opcode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Opcode/t/ops.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/export.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/is.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/math.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/posix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/sigaction.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/sigset.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/sysconf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/termios.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/time.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/unimplemented.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/usage.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/POSIX/t/wrappers.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/PerlIO-encoding/t/encoding.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/PerlIO-encoding/t/fallback.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/PerlIO-encoding/t/nolooping.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/PerlIO-scalar/t/scalar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/PerlIO-scalar/t/scalar_ungetc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/PerlIO-via/t/via.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Functions/Functions_pm.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Functions/Makefile.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Functions/t/Functions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/cache.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/crossref.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/crossref2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/crossref3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/eol.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/feature.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/feature2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmldir1.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmldir2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmldir3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmldir4.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmldir5.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmlescp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmllink.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/htmlview.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/poderr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Pod-Html/t/podnoerr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/SDBM_File/grind: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./ext/SDBM_File/t/constants.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/SDBM_File/t/prep.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/SDBM_File/t/sdbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Sys-Hostname/t/Hostname.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Tie-Hash-NamedCapture/t/tiehash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Tie-Memoize/t/Tie-Memoize.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/VMS-Filespec/t/filespec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/Win32CORE/t/win32core.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/autoload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/blockhooks-csc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/blockhooks.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/call.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/caller.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/callregexec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/check_warnings.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/clone-with-stack.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/customop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/eval-filter.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gotosub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/grok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gv_autoload4.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gv_const_sv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gv_fetchmeth.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gv_fetchmeth_autoload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gv_fetchmethod_flags.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/gv_init.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/handy.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/hash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/join_with_space.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/mro.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/multicall.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/my_cxt.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/my_exit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/newCONSTSUB.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/newDEFSVOP.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/op.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/peep.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/pmflag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/ptr_table.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/refs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/rmagical.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/sort.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/subcall.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/svcat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/svpv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/svpv_magic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/synthetic_scope.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/temp_lv_sub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/utf16_to_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/weaken.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/whichsig.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/xs_special_subs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/xs_special_subs_require.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/XS-APItest/t/xsub_h.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/arybase/t/arybase.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/lexical_debug.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/qr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/re.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/re_funcs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/re_funcs_u.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/reflags.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/regop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./ext/re/t/strict.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./h2pl/getioctlsizes: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./h2pl/mksizes: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./h2pl/mkvars: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./h2pl/tcbreak: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./h2pl/tcbreak2: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./hints/cxux.sh: changing `/local/gnu/bin/bash' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/bash'
patch-shebang: ./hints/cygwin.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./hints/gnukfreebsd.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./hints/gnuknetbsd.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./hints/hpux.sh: changing `/usr/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./hints/os2.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./hints/riscos.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./install_lib.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./installhtml: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./installman: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./installperl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/AnyDBM_File.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/B/Deparse-core.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/B/Deparse-subclass.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/B/Deparse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Benchmark.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Class/Struct.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Config.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Config/Extensions.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/DB.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/DirHandle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/English.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/ExtUtils/t/Embed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/File/Basename.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/File/Compare.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/File/Copy.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/File/stat-7896.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/File/stat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/FileHandle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/FindBin.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Getopt/Std.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Internals.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Net/hostent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Net/netent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Net/protoent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Net/servent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Pod/t/InputObjects.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Pod/t/Select.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Pod/t/Usage.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Pod/t/utils.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/SelectSaver.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Symbol.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Array/push.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Array/splice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Array/std.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Array/stdpush.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/ExtraHash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Handle/stdhandle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Handle/stdhandle_from_handle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Hash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/Scalar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Tie/SubstrHash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Time/gmtime.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Time/localtime.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/Unicode/UCD.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/User/grent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/User/pwent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/blib.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/charnames.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/diagnostics.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/dumpvar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/feature.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/filetest.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/h2ph.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/h2xs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/integer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/less.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/locale.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/meta_notation.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/open.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/overload64.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/break-on-dot: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/breakpoint-bug: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/disable-breakpoints-1: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/disable-breakpoints-2: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/disable-breakpoints-3: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/eval-line-bug: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/fact: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/filename-line-breakpoint: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/load-modules: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/lvalue-bug: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/proxy-constants: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/rt-104168: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/rt-121509-restart-after-chdir: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/rt-61222: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/rt-66110: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/symbol-table-bug: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/taint: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-PrintRet-option-1: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-a-statement-1: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-frame-option-1: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-l-statement-2: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-passing-at-underscore-to-x-etc: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-r-statement: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/test-w-statement-1: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/uncalled-subroutine: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/perl5db/t/with-subroutine: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/sigtrap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/sort.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/strict.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/subs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/unicore/mktables: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/vars.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/vars_carp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/vmsish.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./lib/warnings.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./make_ext.pl: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./make_patchnum.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./makedepend.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./metaconfig.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./myconfig.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./os2/OS2/OS2-Process/t/os2_atoms.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./os2/OS2/OS2-Process/t/os2_clipboard.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./os2/OS2/OS2-Process/t/os2_process.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./os2/OS2/OS2-Process/t/os2_process_kid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./os2/OS2/OS2-Process/t/os2_process_text.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./os2/os2_base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./os2/os2_pipe.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./plan9/aperl: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./plan9/config_sh.sample: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./plan9/fndvers: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./plan9/genconfig.pl: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./plan9/myconfig.plan9: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./plan9/setup.rc: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./pod/buildtoc: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./pod/perlmodlib.PL: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./pod/splitman: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./pod/splitpod: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./qnx/ar: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./qnx/cpp: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./regen.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/charset_translations.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/embed.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/embed_lib.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/feature.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/genpacksizetables.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/keywords.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/lib_cleanup.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/mg_vtable.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/miniperlmain.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/mk_PL_charclass.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/mk_invlists.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/op_private: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/opcode.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/overload.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/reentr.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/regcharclass.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/regcomp.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/regen_lib.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/uconfig_h.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen/warnings.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./regen_perly.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./runtests.SH: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./symbian/config.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./symbian/config.sh: warning: no binary for interpreter `\\bin\\sh' found in $PATH
patch-shebang: ./symbian/demo_pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./symbian/find_writeable_data.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./symbian/hexdump.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./symbian/makesis.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./symbian/sisify.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./symbian/xsbuild.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/TEST: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/cond.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/if.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/lex.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/num.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/pat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/rs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/term.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/translate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/base/while.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/benchmark/rt26188-speed-up-keys-on-empty-hash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/bigmem/index.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/bigmem/pos.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/bigmem/read.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/bigmem/regexp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/bigmem/subst.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/bigmem/vec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/cmd/elsif.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/cmd/for.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/cmd/mod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/cmd/subval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/cmd/switch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/bproto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/cmdopt.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/colon.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/decl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/final_line_num.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/fold.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/form_scope.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/hints.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/line_debug.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/multiline.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/opsubs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/our.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/package.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/package_block.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/parser.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/proto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/redef.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/require.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/retainedlines.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/term.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/uproto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/use.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/comp/utf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/harness: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/argv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/binmode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/bom.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/closepid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/crlf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/crlf_through.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/data.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/defout.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/dup.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/eintr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/eintr_print.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/errno.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/errnosig.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/fflush.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/fs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/inplace.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/iofile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/iprefix.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/layers.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/nargv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/open.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/openpid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/perlio_fail.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/perlio_leaks.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/perlio_open.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/pipe.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/print.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/pvbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/read.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/say.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/sem.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/socket.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/tell.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/through.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/io/utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/japh/abigail.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/commonsense.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/croak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/cygwin.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/dbmt_common.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/deprecate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/mypragma.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/no_load.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/test_require.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/test_use.pm: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/lib/universal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_01_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_01_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_01_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_01_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_02_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_02_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_02_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_02_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_03_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_03_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_03_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_03_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_04_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_04_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_04_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_04_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_05_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_05_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_05_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_05_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/basic_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/c3_with_overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/c3_with_overload_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/complex_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/complex_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/complex_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/complex_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/dbic_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/dbic_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/dbic_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/dbic_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/inconsistent_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/inconsistent_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isa_aliases.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isa_aliases_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isa_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isa_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isa_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isa_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isarev.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/isarev_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/method_caching.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/method_caching_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_NEXT.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_NEXT_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_edgecases.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_edgecases_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_goto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_goto_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_inanon.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_inanon_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_ineval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_ineval_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_method.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_method_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_skip.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/next_skip_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/overload_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/overload_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/overload_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/package_aliases.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/package_aliases_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/pkg_gen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/pkg_gen_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/recursion_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/recursion_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/recursion_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/recursion_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/vulcan_c3.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/vulcan_c3_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/vulcan_dfs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/mro/vulcan_dfs_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/64bitint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/alarm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/anonconst.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/anonsub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/append.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/args.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/array.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/array_base.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/assignwarn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/attrhand.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/attrproto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/attrs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/auto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/avhv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/bless.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/blocks.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/bop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/caller.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/chars.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/chdir.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/chop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/chr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/closure.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/concat2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/cond.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/const-optree.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/context.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/coreamp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/coresubs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/cproto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/crypt.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/current_sub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/dbm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/defined.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/defins.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/delete.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/die.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/die_except.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/die_exit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/die_keeperr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/die_unwind.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/do.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/dor.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/dump.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/each.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/each_array.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/eval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/evalbytes.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/exec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/exists_sub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/exp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/fh.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/filehandle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/filetest.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/filetest_stack_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/filetest_t.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/flip.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/for.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/fork.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/fresh_perl_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/getpid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/getppid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/glob.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/gmagic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/goto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/goto_xs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/grent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/grep.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/groups.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/gv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/hash-rt85026.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/hash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/hashassign.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/hashwarn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/hexfp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/inc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/inccode-tie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/inccode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/incfilter.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/index.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/index_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/infnan.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/int.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/join.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/kill0.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/kvaslice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/kvhslice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/lc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/leaky-magic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/length.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/lex.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/lex_assign.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/lexsub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/list.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/local.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/localref.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/lock.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/loopctl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/lop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/magic-27839.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/magic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/method.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/mkdir.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/multideref.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/my.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/my_stash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/mydef.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/negate.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/not.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/numconvert.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/oct.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/or.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/ord.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/overload_integer.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/override.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/pack.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/packagev.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/pos.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/postfixderef.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/pow.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/print.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/protowarn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/push.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/pwent.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/qr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/quotemeta.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/rand.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/range.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/read.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/readdir.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/readline.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/recurse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/ref.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/repeat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/require_37033.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/require_errors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/require_override.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/reset.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/reverse.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/rt119311.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/runlevel.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/select.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/setpgrpstack.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sigdispatch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/signatures.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sigsystem.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sleep.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/smartkve.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/smartmatch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sort.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/splice.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/split.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/split_unicode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sprintf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sprintf2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/srand.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sselect.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/stash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/stat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/state.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/study.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/studytied.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sub.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/substr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/substr_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/svleak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/switch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/symbolcache.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/sysio.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/threads-dirh.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/threads.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/tie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/tie_fetch_count.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/tiearray.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/tiehandle.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/time.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/time_loop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/undef.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/universal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/unlink.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/unshift.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/upgrade.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/utf8cache.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/utf8decode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/utf8magic.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/utfhash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/utftaint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/vec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/ver.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/waitpid.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/wantarray.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/warn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/while.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/write.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/op/yadayada.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/opbasic/arith.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/opbasic/cmp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/opbasic/concat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/opbasic/magic_phase.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/opbasic/qq.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/perf/benchmarks: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/perf/benchmarks.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/perf/opcount.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/perf/optree.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/perf/speed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/perf/taint.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/FindExt.t: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./t/porting/args_assert.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/authors.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/bench.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/bincompat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/checkcase.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/checkcfgvar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/cmp_version.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/copyright.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/corelist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/customized.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/diag.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/dual-life.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/exec-bit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/extrefs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/filenames.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/globvar.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/libperl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/maintainers.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/manifest.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/pending-author.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/perlfunc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/pod_rules.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/podcheck.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/re_context.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/readme.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/regen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/ss_dup.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/test_bootstrap.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/porting/utils.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/no_utf8_pm.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_advanced.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_advanced_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_psycho.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_psycho_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_re_eval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_re_eval_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_rt_report.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_rt_report_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_special_cc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_special_cc_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pat_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/pos.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/qr-72922.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/qr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/qr_gc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/qrstack.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/recompile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_60508.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_email.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_email_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_eval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_eval_scope.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_fold.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_mesg.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_namedcapture.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_nc_tie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_nocapture.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_pmod.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/reg_posixcc.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regex_sets.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regex_sets_compat.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_noamp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_notrie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_qr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_qr_embed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_qr_embed_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_trielist.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_unicode_prop.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/regexp_unicode_prop_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/rt122747.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/rxcode.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/speed.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/speed_thr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/subst.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/substT.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/subst_amp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/re/subst_wamp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/cloexec.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/dtrace.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/exit.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/fresh_perl.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/locale.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/noswitch.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/runenv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/script.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switch0.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchC.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchF.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchF1.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchF2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchI.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchM.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switcha.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchd-78586.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchd.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switches.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchn.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switcht.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/run/switchx.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/test_pl/_num_to_alpha.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/test_pl/can_isa_ok.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/test_pl/plan_skip_all.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/test_pl/tempfile.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/thread_it.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/attrs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/bless.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/caller.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/chomp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/chr.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/eval.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/goto.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/greek.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/gv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/labels.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/latin2.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/lex_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/method.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/opcroak.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/overload.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/package.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/parser.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/readline.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/select.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/sprintf.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/stash.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/tie.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/tr_7jis.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/tr_eucjp.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/tr_sjis.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/tr_utf8.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/universal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/variables.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/uni/write.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/win32/fs.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/win32/popen.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/win32/runenv.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/win32/signal.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/win32/system.t: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./t/win32/system_tests: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./uconfig.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./uconfig64.sh: changing `/bin/sh' to `/gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sh'
patch-shebang: ./utils/Makefile.PL: warning: no binary for interpreter `miniperl' found in $PATH
patch-shebang: ./utils/c2ph.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/corelist.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/cpan.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/enc2xs.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/encguess.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/h2ph.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/h2xs.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/instmodsh.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/json_pp.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/libnetcfg.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/perlbug.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/perldoc.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/perlivp.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/piconv.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/pl2pm.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/pod2html.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/prove.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/ptar.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/ptardiff.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/ptargrep.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/shasum.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/splain.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/xsubpp.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./utils/zipdetails.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./vms/mms2make.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/bin/exetype.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/bin/perlglob.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/bin/runperl.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/bin/search.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/config_h.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/config_sh.PL: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/create_perllibst_h.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./win32/list_static_libs.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./write_buildcustomize.pl: warning: no binary for interpreter `miniperl' found in $PATH
phase `patch-source-shebangs' succeeded after 0.5 seconds
starting phase `configure'
 
Beginning of configuration questions for perl5.
 
Checking echo to see how to suppress newlines...
...using -n.
The star should be here-->*
 
First let's make sure your kit is complete.  Checking...
Looks good...
 

This installation shell script will examine your system and ask you questions
to determine how the perl5 package should be installed. If you get
stuck on a question, you may use a ! shell escape to start a subshell or
execute a command.  Many of the questions will have default answers in square
brackets; typing carriage return will give you the default.

On some of the questions which ask for file or directory names you are allowed
to use the ~name construct to specify the login directory belonging to "name",
even if you don't have a shell which knows about that.  Questions where this is
allowed will be marked "(~name ok)".

[Type carriage return to continue]  

The prompter used in this script allows you to use shell variables and
backticks in your answers.  You may use $1, $2, etc...  to refer to the words
in the default answer, as if the default line was a set of arguments given to a
script shell.  This means you may also use $* to repeat the whole default line,
so you do not have to re-type everything to add something to the default.

Every time there is a substitution, you will have to confirm.  If there is an
error (e.g. an unmatched backtick), the default answer will remain unchanged
and you will be prompted again.

If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
the questions and use the computed defaults (or the previous answers if there
was already a config.sh file). Type 'Configure -h' for a list of options.
You may also start interactively and then answer '& -d' at any prompt to turn
on the non-interactive behaviour for the remainder of the execution.

[Type carriage return to continue]  

Much effort has been expended to ensure that this shell script will run on any
Unix system.  If despite that it blows up on yours, your best bet is to edit
Configure and run it again.  If you can't run Configure for some reason,
you'll have to generate a config.sh file by hand.  Whatever problems you
have, let me (perlbug@perl.org) know how I blew it.

This installation script affects things in two ways:

1) it may do direct variable substitutions on some of the files included
   in this kit.
2) it builds a config.h file for inclusion in C programs.  You may edit
   any of these files as the need arises after running this script.

If you make a mistake on a question, there is no easy way to back up to it
currently.  The easiest thing to do is to edit config.sh and rerun all the SH
files.  Configure will offer to let you do this before it runs the SH files.

[Type carriage return to continue]  
 
Locating common programs...
awk is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/awk.
cat is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/cat.
chmod is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/chmod.
comm is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/comm.
cp is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/cp.
echo is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/echo.
expr is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/expr.
grep is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/grep.
ls is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/ls.
mkdir is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/mkdir.
rm is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/rm.
sed is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sed.
sort is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/sort.
touch is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/touch.
tr is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/tr.
uniq is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/uniq.
 
Don't worry if any of the following aren't found...
ar is in /gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin/ar.
I don't see bison out there, offhand.
I don't see byacc out there, either.
cpp is in /gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/bin/cpp.
I don't see csh out there, either.
date is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/date.
egrep is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/egrep.
I don't see gmake out there, either.
gzip is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/gzip.
I don't see less out there, either.
ln is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/ln.
make is in /gnu/store/9q1687didb5izajfqszkz7vzrhxyz4sb-make-boot0-4.1/bin/make.
I don't see more out there, either.
nm is in /gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin/nm.
I don't see nroff out there, either.
I don't see perl out there, either.
I don't see pg out there, either.
test is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/test.
uname is in /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/uname.
I don't see zip out there, either.
Using the test built into your sh.
 
Checking compatibility between /gnu/store/zh914iy23h97fwskh12vl3py1frkhrqn-bootstrap-binaries-0/bin/echo and builtin echo (if any)...
They are compatible.  In fact, they may be identical.
The following message is sponsored by

  Dresden.pm<--The stars should be here.

Dear Perl user, system administrator or package
maintainer, the Perl community sends greetings to
you. Do you (emblematical) greet back [Y/n]? n

 
Symbolic links are supported.
 
Checking how to test for symbolic links...
You can test for symbolic links with 'test -h'.
 
Checking for cross-compile
No targethost for running compiler tests against defined, running locally
 
Good, your tr supports [:lower:] and [:upper:] to convert case.
Using [:upper:] and [:lower:] to convert case.

First time through, eh?  I have some defaults handy for some systems
that need some extra help getting the Configure answers right:

aix   	      dragonfly       irix_4   		nonstopux     stellar   
aix_3         dynix   	      irix_5   		openbsd       sunos_4_0   
aix_4         dynixptx        irix_6   		opus          sunos_4_1   
altos486      epix   	      irix_6_0   	os2   	      super-ux   
amigaos       esix4   	      irix_6_1   	os390         svr4   
atheos        fps   	      isc   		os400         svr5   
aux_3         freebsd         isc_2   		posix-bc      ti1500   
bitrig        freemint        linux-android   	powerux       ultrix_4   
bsdos         genix   	      linux   		qnx   	      umips   
catamount     gnu   	      lynxos   		riscos        unicos   
convexos      gnukfreebsd     midnightbsd   	sco   	      unicosmk   
cxux          gnuknetbsd      mips   		sco_2_3_0     unisysdynix   
cygwin        greenhills      mirbsd   		sco_2_3_1     utekv   
darwin        haiku   	      mpc   		sco_2_3_2     uwin   
dcosx         hpux   	      ncr_tower   	sco_2_3_3     vos   
dec_osf       i386   	      netbsd   		sco_2_3_4   
dos_djgpp     interix         newsos4   	solaris_2   

You may give one or more space-separated answers, or "none" if appropriate.
If you have a handcrafted Policy.sh file or a Policy.sh file generated by a
previous run of Configure, you may specify it as well as or instead of
OS-specific hints.  If hints are provided for your OS, you should use them:
although Perl can probably be built without hints on many platforms, using
hints often improve performance and may enable features that Configure can't
set up on its own. If there are no hints that match your OS, specify "none";
DO NOT give a wrong version or a wrong OS.

Which of these apply, if any? [linux]  


You appear to have ELF support.  I'll try to use it for dynamic loading.
If dynamic loading doesn't work, read hints/linux.sh for further information.

You appear to have a working bash.  Good.

Configure uses the operating system name and version to set some defaults.
The default value is probably right if the name rings a bell. Otherwise,
since spelling matters for me, either accept the default or answer "none"
to leave it blank.

Operating system name? [linux]  
 
Operating system version? [4.3.0-1-amd64]  

By default, perl5 will be installed in /gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1/bin, manual pages
under /gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1/man, etc..., i.e. with /gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1 as prefix for all
installation directories. Typically this is something like /usr/local.
If you wish to have binaries under /usr/bin but other parts of the
installation under /usr/local, that's ok: you will be prompted
separately for each of the installation directories, the prefix being
only used to set the defaults.

Installation prefix to use? (~name ok)
[/gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1]  
Directory /gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1 doesn't exist.  Use that name anyway?
[y]  
 
AFS does not seem to be running...

In some special cases, particularly when building perl5 for distribution,
it is convenient to distinguish the directory in which files should be
installed from the directory (/gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1) in which they will
eventually reside.  For most users, these two directories are the same.

What installation prefix should I use for installing files? (~name ok)
[/gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1]  
Directory /gnu/store/xfakriw8xva8hkq0q0f18a0k986bmv05-perl-5.22.1 doesn't exist.  Use that name anyway?
[y]  
 
Getting the current patchlevel...
(You have perl5 version 22 subversion 1.)

Perl can be built to offer a form of threading support on some systems
To do so, Configure can be run with -Dusethreads.

Note that Perl built with threading support runs slightly slower
and uses slightly more memory than plain Perl.

If this doesn't make any sense to you, just accept the default 'n'.
Build a threading Perl? [n]  
Your platform has some specific hints regarding threaded builds, using them...

Perl can be built so that multiple Perl interpreters can coexist
within the same Perl executable.
 
If this doesn't make any sense to you, just accept the default 'n'.
Build Perl for multiplicity? [n]  
 
Use which C compiler? [gcc]  
 
Hmm...  Looks kind of like a Version 7 system, but we'll see...
 
Congratulations.  You aren't running Eunice.
 
It's not Xenix...
 
Nor is it Venix...
 
Checking for GNU cc in disguise and/or its version number...
You are using GNU cc 4.8.2.
 
Hmm...  Doesn't look like a MIPS system.
 
Now, how can we feed standard input to your C preprocessor...
Maybe "gcc -E" will work...
Nope...maybe "gcc -E -" will work...
Yup, it does.

Some systems have incompatible or broken versions of libraries.  Among
the directories listed in the question below, please remove any you
know not to be holding relevant libraries, and add any that are needed.
Say "none" for none.

Directories to use for library searches?
[/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib /gnu/store/azbpq38sjr2332vdm0llpa8mh9rjk0d6-file-boot0-5.25/lib /gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib /gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/bin/../lib/gcc/x86_64-unknown-linux-gnu/4.8.2/include-fixed /gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/bin/../lib/gcc/../../lib]  

On some systems, shared libraries may be available.  Answer 'none' if
you want to suppress searching of shared libraries for the remainder
of this configuration.

What is the file extension used for shared libraries? [so]  

Some dynamic loaders assume that the *basename* of shared library filenames
are globally unique.  We'll default this to undef as we assume your system
is not this weird. Set to defined if you're on one of them.

Make shared library basenames unique? [n]  

Perl can be built to use the SOCKS proxy protocol library.  To do so,
Configure must be run with -Dusesocks.  If you use SOCKS you also need
to use the PerlIO abstraction layer, this will be implicitly selected.

If this doesn't make any sense to you, just accept the default 'n'.
Build Perl for SOCKS? [n]  

Perl can be built to take advantage of long doubles which
(if available) may give more accuracy and range for floating point numbers.

If this doesn't make any sense to you, just accept the default 'n'.
Try to use long doubles if available? [n]  
 
Checking for optional libraries...
No -lcl.
Found -lpthread (shared).
No -lsocket.
No -linet.
Found -lnsl (shared).
No -lnm.
No -lndbm.
No -lgdbm.
No -ldbm.
No -ldb.
No -lmalloc.
Found -ldl (shared).
No -lld.
No -lsun.
Found -lm (shared).
Found -lcrypt (shared).
No -lsec.
Found -lutil (shared).
Found -lc (shared).
No -lcposix.
No -lposix.
No -lucb.
No -lBSD.
No -lgdbm_compat.

In order to compile perl5 on your machine, a number of libraries
are usually needed.  Include any other special libraries here as well.
Say "none" for none.  The default list is almost always right.
 
What libraries to use? [-lpthread -lnsl -ldl -lm -lcrypt -lutil -lc]  

By default, perl5 compiles with the -O flag to use the optimizer.
Alternately, you might want to use the symbolic debugger, which uses
the -g flag (on traditional Unix systems).  Either flag can be
specified here.  To use neither flag, specify the word "none".

What optimizer/debugger flag should be used? [-O2]  
 
Checking if your compiler accepts -fno-strict-aliasing
Yes, it does.
 
Checking if your compiler accepts -pipe
Yes, it does.
 
Checking if your compiler accepts -fstack-protector-strong
Nope, it does not, but that is ok.
 
Checking if your compiler accepts -fstack-protector
Yes, it does.

Your C compiler may want other flags.  For this question you should include
-I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
but you should NOT include libraries or ld flags like -lwhatever.  If you
want perl5 to honor its debug switch, you should include -DDEBUGGING here.
Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.

To use no flags, specify the word "none".

Any additional cc flags?
[-fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/include]  
 
Let me guess what the preprocessor flags are...
They appear to be: -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/include

Your C linker may need flags.  For this question you should
include -L/whatever and any other flags used by the C linker, but you
should NOT include libraries like -lwhatever.

Make sure you include the appropriate -L/path flags if your C linker
does not normally search all of the directories you specified above,
namely
	/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib /gnu/store/azbpq38sjr2332vdm0llpa8mh9rjk0d6-file-boot0-5.25/lib /gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib /gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/bin/../lib/gcc/x86_64-unknown-linux-gnu/4.8.2/include-fixed /gnu/store/clxwrx7hn1x33m7584yqz9mgd7d0z4i6-gcc-bootstrap-0/bin/../lib/gcc/../../lib
To use no flags, specify the word "none".

Any additional ld flags (NOT including libraries)?
[ -fstack-protector -L/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib]  
 
Checking your choice of C compiler and flags for coherency...
I've tried to compile and run the following simple program:

#include <stdio.h>
int main() { printf("Ok\n"); return(0); }

I used the command:

	gcc -o try -O2 -fwrapv -fno-strict-aliasing -pipe -fstack-protector -I/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/include -fstack-protector -L/gnu/store/hkwl20n5ca87bczjrlv8b8vfm26vcrxy-glibc-bootstrap-0/lib try.c -lpthread -lnsl -ldl -lm -lcrypt -lutil -lc
	 ./try

and I got the following output:

/gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin/ld: cannot find /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.18/lib/libpthread.so.0
/gnu/store/5d1ax083qv01jsi07ldm29dspbxcb1lb-binutils-bootstrap-0/bin/ld: cannot find /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.18/lib/libpthread_nonshared.a
collect2: error: ld returned 1 exit status
I can't compile the test program.
(The supplied flags or libraries might be incorrect.)
 
You have a BIG problem.  Shall I abort Configure [y]  
Ok.  Stopping Configure.
phase `configure' failed after 0.6 seconds
builder for `/gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv' failed with exit code 1
@ build-failed /gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv - 1 builder for `/gnu/store/izhqpd3hj0g2qsvdvbll2p1nkpgvymbb-perl-5.22.1.drv' failed with exit code 1
cannot build derivation `/gnu/store/r5fx0sdw93rq87pdv0yfi0wfc5y6xc5v-apr-1.5.2.drv': 1 dependencies couldn't be built
guix build: error: build failed: build of `/gnu/store/r5fx0sdw93rq87pdv0yfi0wfc5y6xc5v-apr-1.5.2.drv' failed

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-02  9:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-02  5:59 Difficulty with Perl graft Leo Famulari
2016-03-02  9:32 ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.