Files
ports/sysutils/backuppc4/files/patch-bin_BackupPC__rrdUpdate
T
Alexander Moisseev 9ba55354cb sysutils/backuppc*: Patch to remove undefined import method BPC_DT_ALL
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
2026-04-27 02:01:07 +02:00

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);