[csw-devel] SF.net SVN: gar:[21715] csw/mgar/gar/v2/lib/python/dependency_checks.py
chninkel at users.sourceforge.net
chninkel at users.sourceforge.net
Mon Aug 12 23:34:47 CEST 2013
Revision: 21715
http://gar.svn.sourceforge.net/gar/?rev=21715&view=rev
Author: chninkel
Date: 2013-08-12 21:34:47 +0000 (Mon, 12 Aug 2013)
Log Message:
-----------
gar/v2: no-direct-binding check: handle the case where the symbol is stored in bss
Modified Paths:
--------------
csw/mgar/gar/v2/lib/python/dependency_checks.py
Modified: csw/mgar/gar/v2/lib/python/dependency_checks.py
===================================================================
--- csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-12 21:27:07 UTC (rev 21714)
+++ csw/mgar/gar/v2/lib/python/dependency_checks.py 2013-08-12 21:34:47 UTC (rev 21715)
@@ -193,7 +193,7 @@
# not to be directly bound to.
# So we consider that direct binding is enabled if at least one
# symbol is directly bound to the library
- if (syminfo['shndx'] == 'UNDEF' and 'B' in syminfo['flags']):
+ if (syminfo['shndx'] in ('UNDEF', '.bss') and 'B' in syminfo['flags']):
db_libs.add(syminfo['soname'])
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