summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog2
-rw-r--r--perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 0798416..11fe3fe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,7 @@
pkg-kde-tools (0.15.11) UNRELEASED; urgency=medium
+ [ Dmitry Shachnev ]
+ * pkgkde-symbolshelper: fix qptrdiff expansion for s390x.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 18 Dec 2013 16:07:44 +0400
diff --git a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
index 8f00635..34ca9b6 100644
--- a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
+++ b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
@@ -237,7 +237,7 @@ sub new {
sub _expand {
my ($self, $arch) = @_;
- return ($arch =~ /amd64|ia64|alpha|sparc64|ppc64/) ? 'x' : 'i';
+ return ($arch =~ /amd64|ia64|alpha|s390x|sparc64|ppc64/) ? 'x' : 'i';
}
package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::quintptr;