Loading toolkit/library/dependentlibs.py +1 −1 Original line number Diff line number Diff line Loading @@ -71,7 +71,7 @@ def dependentlibs_readelf(lib): def dependentlibs_otool(lib): '''Returns the list of dependencies declared in the given MACH-O dylib''' proc = subprocess.Popen(['otool', '-l', lib], stdout = subprocess.PIPE) proc = subprocess.Popen([TOOLCHAIN_PREFIX + 'otool', '-l', lib], stdout = subprocess.PIPE) deps= [] cmd = None for line in proc.stdout: Loading Loading
toolkit/library/dependentlibs.py +1 −1 Original line number Diff line number Diff line Loading @@ -71,7 +71,7 @@ def dependentlibs_readelf(lib): def dependentlibs_otool(lib): '''Returns the list of dependencies declared in the given MACH-O dylib''' proc = subprocess.Popen(['otool', '-l', lib], stdout = subprocess.PIPE) proc = subprocess.Popen([TOOLCHAIN_PREFIX + 'otool', '-l', lib], stdout = subprocess.PIPE) deps= [] cmd = None for line in proc.stdout: Loading