Changeset 99
- Timestamp:
- 02/19/05 17:21:17 (4 years ago)
- svk:copy_cache_prev:
- 1041
- Files:
-
- 7 added
- 1 modified
-
Makefile.PL (modified) (1 diff)
-
inc/Test (added)
-
inc/Test/Harness (added)
-
inc/Test/Harness.pm (added)
-
inc/Test/Harness/Assert.pm (added)
-
inc/Test/Harness/Iterator.pm (added)
-
inc/Test/Harness/Straps.pm (added)
-
inc/Test/Harness/TAP.pod (added)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.PL
r90 r99 85 85 open MAKEFILE, '< Makefile' or die $!; 86 86 my $makefile = do { local $/; <MAKEFILE> }; 87 $makefile =~ s/\b(test_harness\(\$\(TEST_VERBOSE\), )/use English; *EXECUTABLE_NAME->{SCALAR} = \\'$full_pugs'; ENV->{HARNESS_PERL} = qq*\Q$full_pugs\E*; ENV->{PERL6LIB} = qq*\Q$full_t\E*; $1/; 87 $full_pugs =~ s{\\}{\\\\}g; $full_pugs =~ s{'}{\\'}g; 88 $full_t =~ s{\\}{\\\\}g; $full_t =~ s{'}{\\'}g; 89 $makefile =~ s/\b(test_harness\(\$\(TEST_VERBOSE\), )/ENV->{HARNESS_PERL} = q*$full_pugs*; ENV->{PERL6LIB} = q*$full_t*; $1/; 90 $makefile =~ s/("-MExtUtils::Command::MM")/"-Iinc" $1/g; 88 91 close MAKEFILE; 89 92 open MAKEFILE, '> Makefile' or die $!;
