Remove special casing for libiconv.

This commit is contained in:
John Maguire 2013-07-12 15:08:53 +02:00
parent 150345f2a6
commit e7ff2ff2ac
1 changed files with 0 additions and 4 deletions

4
dist/macdeploy.py vendored
View File

@ -178,8 +178,6 @@ def GetBrokenLibraries(binary):
continue
if os.path.basename(binary) in line:
continue
if 'libiconv' in line:
broken_libs['libs'].append(line)
elif re.match(r'^\s*/System/', line):
continue # System framework
elif re.match(r'^\s*/usr/lib/', line):
@ -327,8 +325,6 @@ def FixInstallPath(library_path, library, new_path):
commands.append(args)
def FindSystemLibrary(library_name):
if 'iconv' in library_name:
return None
for path in ['/lib', '/usr/lib']:
full_path = os.path.join(path, library_name)
if os.path.exists(full_path):