From b31fa1f87f373d8d2fdc43a489ef5611de7a2af7 Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Fri, 12 Jun 2026 10:20:34 -0400 Subject: [PATCH] Don't try to import a non-exported object in vcregress.pl Commit ca9e9b08e453 wrongly tried to import devnull from File::Spec, but it's not exported, you just call the method via the class. This was harmless until modern perls complained, so stop doing that. Per buildfarm failures. Backpatch 14 thru 16 --- src/tools/msvc/vcregress.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 57b1a0c2213..9a944818683 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -14,7 +14,7 @@ use File::Basename; use File::Copy; use File::Find (); use File::Path qw(rmtree); -use File::Spec qw(devnull); +use File::Spec; use FindBin; use lib $FindBin::RealBin;