Applied patch for issue #23.

git-svn-id: http://svn.pyinstaller.org/trunk@508 8dd32b29-ccff-0310-8a9a-9233e24343b1
This commit is contained in:
htgoebel
2008-07-28 19:27:38 +00:00
parent f272333b34
commit df12ddbec5
+1 -1
View File
@@ -333,7 +333,7 @@ def _getImports_ldd(pth):
m = re.search(r"\s+(.*?)\s+=>\s+(.*?)\s+\(.*\)", line)
if m:
name, lib = m.group(1), m.group(2)
if name[:10] == 'linux-gate':
if name[:10] in ('linux-gate', 'linux-vdso'):
# linux-gate is a fake library which does not exist and
# should be ignored. See also:
# http://www.trilithium.com/johan/2005/08/linux-gate/