3 # Use this script as an alternative to "perl Makefile.PL && make build_perl" if you don't have GHC installed.
8 perl util/src_to_blib.pl;
9 util/prove6 t/01-sanity
11 There might be a few modules missing, install them from CPAN. You will see the
12 tc files after you run the tests.
14 This script is dumb about finding the right 'make' to use.
15 You may need to edit it to provide the correct value.
21 my @cmds = for_perl5
("cd __DIR__ && perl Makefile.PL && $MAKE");
33 foreach my $dir (grep { -d
} glob('perl5/*')) {
34 -e
"$dir/Makefile.PL" or next;
36 # Skip XS modules for now
37 next if glob("$dir/*.xs") or glob("$dir/*.i");
40 $this =~ s{__DIR__}{$dir}g;
43 # Changed from Makefile.PL to just return the commands