From df12ddbec57e954ff2c9aa39b8b3cb905f00596a Mon Sep 17 00:00:00 2001 From: htgoebel Date: Mon, 28 Jul 2008 19:27:38 +0000 Subject: [PATCH] Applied patch for issue #23. git-svn-id: http://svn.pyinstaller.org/trunk@508 8dd32b29-ccff-0310-8a9a-9233e24343b1 --- bindepend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindepend.py b/bindepend.py index 2788f54..f5c4258 100755 --- a/bindepend.py +++ b/bindepend.py @@ -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/