diff options
author | Modestas Vainius <modax@debian.org> | 2011-07-21 16:18:31 +0300 |
---|---|---|
committer | Modestas Vainius <modax@debian.org> | 2011-07-21 16:18:31 +0300 |
commit | 356f1589490ac779dcca90d739610c515b731cf6 (patch) | |
tree | 1ecef46da64da9bae419f630983859ab02dcada6 | |
parent | 3f4ea7c59bac7ab46dd102792867635fb65e0f43 (diff) | |
download | pkg-kde-tools-356f1589490ac779dcca90d739610c515b731cf6.tar.gz |
SymbolFileCollection.pm: import Dpkg::Arch::debarch_is into proper package.
-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 { |