diff options
author | Hans de Graaff <graaff@gentoo.org> | 2013-12-24 14:48:47 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2013-12-24 14:48:47 +0000 |
commit | 05d9ed81136773cff157b92df39c3072a3ff9ee6 (patch) | |
tree | cf7b55d6c9e65a63e256300fcf9e11edae86ec29 /app-backup/flexbackup/files | |
parent | version bump. (diff) | |
download | gentoo-2-05d9ed81136773cff157b92df39c3072a3ff9ee6.tar.gz gentoo-2-05d9ed81136773cff157b92df39c3072a3ff9ee6.tar.bz2 gentoo-2-05d9ed81136773cff157b92df39c3072a3ff9ee6.zip |
Fix deprecation warning introduced by perl 5.16, fixing bug 495232.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'app-backup/flexbackup/files')
-rw-r--r-- | app-backup/flexbackup/files/flexbackup-1.2.1-perl-5.16-deprecation-warning.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app-backup/flexbackup/files/flexbackup-1.2.1-perl-5.16-deprecation-warning.patch b/app-backup/flexbackup/files/flexbackup-1.2.1-perl-5.16-deprecation-warning.patch new file mode 100644 index 000000000000..72d3abd838a7 --- /dev/null +++ b/app-backup/flexbackup/files/flexbackup-1.2.1-perl-5.16-deprecation-warning.patch @@ -0,0 +1,11 @@ +--- /usr/bin/flexbackup 2010-12-30 08:09:10.000000000 +0100 ++++ flexbackup 2013-12-24 15:44:25.000000000 +0100 +@@ -2688,7 +2688,7 @@ + } + + # Flag old config file +- if (defined(@cfg::filesystems) or defined($cfg::mt_var_blksize)) { ++ if (@cfg::filesystems or $cfg::mt_var_blksize) { + # so strict shuts up + my $junk = @cfg::filesystems; + $junk = $cfg::mt_var_blksize; |