From: Andrew Dunstan Date: Fri, 12 Jun 2026 14:20:34 +0000 (-0400) Subject: Don't try to import a non-exported object in vcregress.pl X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10f087987741394254323bf0016ad1d631494a3d;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 1f6f19bd91b..360a43ece05 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;