diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | perllib/Debian/PkgKde/SymbolsHelper/SymbolFileCollection.pm | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index a6029ff..39ec75b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ pkg-kde-tools (0.14.3) UNRELEASED; urgency=low + * SymbolFileCollection.pm: import Dpkg::Arch::debarch_is into proper package. -- Modestas Vainius <modax@debian.org> Thu, 21 Jul 2011 16:16:36 +0300 diff --git a/perllib/Debian/PkgKde/SymbolsHelper/SymbolFileCollection.pm b/perllib/Debian/PkgKde/SymbolsHelper/SymbolFileCollection.pm index 5e9fb8e..ab994b3 100644 --- a/perllib/Debian/PkgKde/SymbolsHelper/SymbolFileCollection.pm +++ b/perllib/Debian/PkgKde/SymbolsHelper/SymbolFileCollection.pm @@ -18,7 +18,6 @@ package Debian::PkgKde::SymbolsHelper::SymbolFileCollection; use strict; use warnings; -use Dpkg::Arch qw(debarch_is); use Dpkg::ErrorHandling; use Dpkg::Version; use Debian::PkgKde::SymbolsHelper::Substs; @@ -383,6 +382,8 @@ sub create_template { package Debian::PkgKde::SymbolsHelper::SymbolFileCollection::Group; +use Dpkg::Arch qw(debarch_is); + sub new { my ($class, $substs) = @_; return bless { |