about summary refs log tree commit homepage
path: root/Makefile.PL
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-11-24 03:12:37 +0000
committerEric Wong <e@80x24.org>2019-11-24 21:23:29 +0000
commit48d4fdb2acbf8cf05dcb357df53b0d658f88fe39 (patch)
tree09b1d756512f9bade3fd3704120137652340e328 /Makefile.PL
parentfd730c65a3242f609f4ec205ad605408850b2bec (diff)
downloadpublic-inbox-48d4fdb2acbf8cf05dcb357df53b0d658f88fe39.tar.gz
check for File::Temp 0.19 for ->newdir method
This is distributed with Perl 5.10.1 and onwards, so it should
not be an installation burden for any users.  I'm planning to
move away from tempdir() entirely and use File::Temp->newdir to
remove dependencies on END{} blocks.
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 1c70c6f3..f650fdea 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -54,7 +54,7 @@ WriteMakefile(
                 # All Perl installs I know about have these, but RH-based
                 # distros make them separate even though 'perl' pulls them in
                 'File::Path' => 0,
-                'File::Temp' => 0,
+                'File::Temp' => '0.19',
                 'Getopt::Long' => 0,
                 'Exporter' => 0,
                 # ExtUtils::MakeMaker # this file won't run w/o it...