[SCM] Debian Qt/KDE packaging tools branch, master, updated. debian/0.5.3-53-gbac2493
Modestas Vainius
modax at alioth.debian.org
Fri Jan 29 23:51:20 UTC 2010
The following commit has been merged in the master branch:
commit 84553b8b233bcc52feccfe3b2f2ce02827a61663
Author: Modestas Vainius <modestas at vainius.eu>
Date: Fri Jan 29 20:36:53 2010 +0200
Improve detection of C++ template instantiation symbols.
Strip more redundant spaces around special symbols to rule out false negatives.
---
.../Debian/PkgKde/SymbolsHelper/Symbol.pm | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/symbolshelper/Debian/PkgKde/SymbolsHelper/Symbol.pm b/symbolshelper/Debian/PkgKde/SymbolsHelper/Symbol.pm
index 2117794..1b528d1 100644
--- a/symbolshelper/Debian/PkgKde/SymbolsHelper/Symbol.pm
+++ b/symbolshelper/Debian/PkgKde/SymbolsHelper/Symbol.pm
@@ -119,6 +119,7 @@ sub detect_cpp_templinst() {
# Prepare for tokenizing: wipe out unnecessary spaces
$cppname =~ s/([,<>()])\s+/$1/g;
+ $cppname =~ s/\s+([,<>()])/$1/g;
$cppname =~ s/\s*((?:(?:un)?signed|volatile|restrict|const|long)[*&]*)\s*/$1/g;
if (my @tokens = split(/\s+/, $cppname)) {
my $func;
--
Debian Qt/KDE packaging tools
More information about the pkg-kde-commits
mailing list