mirror of
https://github.com/postgres/postgres.git
synced 2026-06-17 12:39:30 -04:00
Don't try to import a non-exported object in vcregress.pl
Commit ca9e9b08e4 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
This commit is contained in:
parent
086652c02f
commit
b31fa1f87f
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue