Changeset 4727
- Timestamp:
- Jan 6, 2021 8:29:49 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Binaries/macRelink.py
r4437 r4727 45 45 46 46 libs = {} 47 ignorelist = [] 47 48 for f in fileList: 48 49 cmd = ['otool','-L',f] … … 55 56 if "libSystem" not in lib: print("ignoring ",lib) 56 57 continue 57 if "@rpath" in lib: continue 58 if "@rpath" in lib and lib not in ignorelist: 59 ignorelist.append(lib) 60 print("ignoring ",lib) 61 continue 58 62 if lib not in libs: 59 63 libs[lib] = []
Note: See TracChangeset
for help on using the changeset viewer.