ocssw
V2022
|
Variables | |
bool | rerunNeeded = True |
p = subprocess.Popen(["otool", "-D", fileName], stdout=subprocess.PIPE, stderr=subprocess.PIPE) | |
out | |
err | |
parts = out.decode("utf-8").split() | |
rpath = parts[0] | |
name = parts[-1] | |
string | id = "@rpath/" + name |
lines = out.decode("utf-8").split('\n') | |
libPath = line.split()[0] | |
libName = parts[-1] | |
string | newName = '@rpath/' + libName |
line = subprocess.check_output(['file', fileName]).decode("utf-8") | |
Variable Documentation
◆ err
err |
Definition at line 21 of file fix_mac_rpath.py.
◆ id
string id = "@rpath/" + name |
Definition at line 28 of file fix_mac_rpath.py.
◆ libName
libName = parts[-1] |
Definition at line 41 of file fix_mac_rpath.py.
◆ libPath
libPath = line.split()[0] |
Definition at line 39 of file fix_mac_rpath.py.
◆ line
line = subprocess.check_output(['file', fileName]).decode("utf-8") |
Definition at line 56 of file fix_mac_rpath.py.
◆ lines
lines = out.decode("utf-8").split('\n') |
Definition at line 35 of file fix_mac_rpath.py.
◆ name
name = parts[-1] |
Definition at line 27 of file fix_mac_rpath.py.
◆ newName
Definition at line 42 of file fix_mac_rpath.py.
◆ out
out |
Definition at line 21 of file fix_mac_rpath.py.
◆ p
p = subprocess.Popen(["otool", "-D", fileName], stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
Definition at line 20 of file fix_mac_rpath.py.
◆ parts
parts = out.decode("utf-8").split() |
Definition at line 23 of file fix_mac_rpath.py.
◆ rerunNeeded
Definition at line 10 of file fix_mac_rpath.py.
◆ rpath
rpath = parts[0] |
Definition at line 25 of file fix_mac_rpath.py.