summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2019-05-28 19:28:36 -0700
committerNoah Misch <noah@leadboat.com>2019-05-28 19:28:36 -0700
commitb31d88b010b44e3c0c1a7b62966f91a55d5d9b8d (patch)
tree6c9b198f1855588c012edb5b9644cada1e93001e /src
parentc44e9bc3a10f8c6dff07db355375339d7a6db24b (diff)
MSVC: Add "use File::Path qw(rmtree)".
My back-patch of commit 10b72deafea5972edcafb9eb3f97154f32ccd340 added calls to File::Path::rmtree(), but v10 and older had not been importing that symbol. Back-patch to v10, 9.6 and 9.5.
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/vcregress.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl
index 122431439ae..f3ac00d5ad7 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -10,6 +10,7 @@ use Cwd;
use File::Basename;
use File::Copy;
use File::Find ();
+use File::Path qw(rmtree);
use File::Spec;
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }