[SCM] Debian Qt/KDE packaging tools branch, improved-gensymbols, updated. debian/0.5.3-17-g9e83174

Modestas Vainius modax at alioth.debian.org
Sat Jan 9 18:17:43 UTC 2010


The following commit has been merged in the improved-gensymbols branch:
commit 52bd0961a081ffda5ac9ae53da316051c978a572
Author: Modestas Vainius <modestas at vainius.eu>
Date:   Sat Jan 9 19:55:47 2010 +0200

    Fix package arch detection in dh_pkgkde-symbolshelper.
---
 symbolshelper/dh_pkgkde-symbolshelper |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/symbolshelper/dh_pkgkde-symbolshelper b/symbolshelper/dh_pkgkde-symbolshelper
index 8445235..976869b 100755
--- a/symbolshelper/dh_pkgkde-symbolshelper
+++ b/symbolshelper/dh_pkgkde-symbolshelper
@@ -7,10 +7,11 @@ use Debian::Debhelper::Dh_Lib;
 init();
 
 foreach my $pkg (@{$dh{DOPACKAGES}}) {
-    my $infile = "debian/$pkg.symbols.in";
-    my $outfile = "debian/$pkg.symbols." . package_arch($pkg);
+    my $arch = package_arch($pkg);
+    next if $arch eq "all";
 
-    next if $pkg eq "all";
+    my $infile = "debian/$pkg.symbols.in";
+    my $outfile = "debian/$pkg.symbols.$arch"
 
     if ($0 =~ /_generate$/) {
         if (-f $infile) {

-- 
Debian Qt/KDE packaging tools



More information about the pkg-kde-commits mailing list