[csw-devel] SF.net SVN: gar:[8753] csw/mgar/gar/v2/lib/python/checkpkg.py
wahwah at users.sourceforge.net
wahwah at users.sourceforge.net
Tue Feb 23 08:37:37 CET 2010
Revision: 8753
http://gar.svn.sourceforge.net/gar/?rev=8753&view=rev
Author: wahwah
Date: 2010-02-23 07:37:33 +0000 (Tue, 23 Feb 2010)
Log Message:
-----------
mGAR v2: checkpkg, also take into account 'D' type symbols.
Modified Paths:
--------------
csw/mgar/gar/v2/lib/python/checkpkg.py
Modified: csw/mgar/gar/v2/lib/python/checkpkg.py
===================================================================
--- csw/mgar/gar/v2/lib/python/checkpkg.py 2010-02-23 00:10:13 UTC (rev 8752)
+++ csw/mgar/gar/v2/lib/python/checkpkg.py 2010-02-23 07:37:33 UTC (rev 8753)
@@ -1028,7 +1028,7 @@
sym = self._ParseNmSymLine(line)
if not sym:
continue
- if not sym['type'] == "T":
+ if sym['type'] not in ("T", "D"):
continue
defined_symbols[binary].append(sym['name'])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list