[tor-commits] [tor-browser/tor-browser-24.1.1esr-1] Ray's otool patch
mikeperry at torproject.org
mikeperry at torproject.org
Mon Dec 2 13:14:01 UTC 2013
commit 88ff5a23f6585f1f9c248082e0f3103e4933b2d2
Author: Georg Koppen <g.koppen at jondos.de>
Date: Tue Nov 12 15:45:50 2013 +0100
Ray's otool patch
---
toolkit/library/dependentlibs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/library/dependentlibs.py b/toolkit/library/dependentlibs.py
index 54e2b86..c8f9d15 100644
--- a/toolkit/library/dependentlibs.py
+++ b/toolkit/library/dependentlibs.py
@@ -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:
More information about the tor-commits
mailing list