Fixed missing extension when looking for private assembly files

git-svn-id: http://svn.pyinstaller.org/trunk@856 8dd32b29-ccff-0310-8a9a-9233e24343b1
This commit is contained in:
fhoech
2010-08-02 13:20:03 +00:00
parent 95e476032b
commit 47965707c7
+1 -1
View File
@@ -478,7 +478,7 @@ class Manifest(object):
if language in (LANGUAGE_NEUTRAL_NT5,
LANGUAGE_NEUTRAL_NT6):
for ext in (".dll", ".manifest"):
paths.extend(glob(os.path.join(dirnm, self.name)))
paths.extend(glob(os.path.join(dirnm, self.name + ext)))
paths.extend(glob(os.path.join(dirnm, self.name,
self.name + ext)))
else: