9ba55354cb
The patches resolve an issue with the undefined import method BPC_DT_ALL which causes warnings in Perl 5.39 and later. PR: 283472 MFH: 2026Q2 Event: Wiesbaden Hackathon 202604
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
--- bin/BackupPC_rrdUpdate.orig 2024-12-21 13:43:19 UTC
|
|
+++ bin/BackupPC_rrdUpdate
|
|
@@ -39,7 +39,7 @@ use lib "__INSTALLDIR__/lib";
|
|
no utf8;
|
|
|
|
use lib "__INSTALLDIR__/lib";
|
|
-use BackupPC::Lib qw( :BPC_DT_ALL );
|
|
+use BackupPC::Lib;
|
|
use File::Path;
|
|
use Data::Dumper;
|
|
our(%Info);
|