summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rw-r--r--perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index ca2f76e..1ba9de9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ pkg-kde-tools (0.14.0~pre1) UNRELEASED; urgency=low
* Do not use Debian "branded" names in DLRestrictions (like e.g.
debian_dlrestrictions special symbol).
+ * pkgkde-symbolshelper: expand qreal subst to float on sh4. (Closes: #627486)
-- Modestas Vainius <modax@debian.org> Tue, 24 May 2011 21:47:52 +0300
diff --git a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
index 69c2a21..dca5c85 100644
--- a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
+++ b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
@@ -275,7 +275,7 @@ sub new {
sub _expand {
my ($self, $arch) = @_;
- return ($arch =~ /arm/) ? 'f' : 'd';
+ return ($arch =~ /(arm|sh4)/) ? 'f' : 'd';
}
package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst;