summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-10-05 11:07:14 +0100
committerNicholas Clark <nick@ccl4.org>2010-10-05 13:48:51 +0100
commitbab7aada2e9c0074c39ee39ffeb3b8e6c550b204 (patch)
tree3d9a82464e8ba8051eb574920c31a8e489de6ee8 /t
parentcde5101a7be11e27127dc4c214d749bb2cc993e6 (diff)
downloadperl-bab7aada2e9c0074c39ee39ffeb3b8e6c550b204.tar.gz
Move pod2man.PL, pod2text.PL, podselect.PL into cpan/podlators/scripts
Let ExtUtils::MakeMaker deal with running these extraction scripts, rather than repeating the logic in (at least) 5 places.
Diffstat (limited to 't')
-rw-r--r--t/porting/dual-life.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/porting/dual-life.t b/t/porting/dual-life.t
index 3ec88af5a6..6e28763a2b 100644
--- a/t/porting/dual-life.t
+++ b/t/porting/dual-life.t
@@ -28,6 +28,9 @@ my %dist_dir_exe;
foreach (qw (podchecker podselect pod2usage)) {
$dist_dir_exe{lc "$_.PL"} = "../cpan/Pod-Parser/$_";
};
+foreach (qw (pod2man pod2text)) {
+ $dist_dir_exe{lc "$_.PL"} = "../cpan/podlators/$_";
+};
my @programs;