mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-07 18:36:09 +08:00
Try to fix dependency check for how Brew works on Intel Macbooks
This commit is contained in:
parent
c7f4612a1b
commit
f719635d57
@ -128,7 +128,7 @@ while True:
|
||||
for deppath in deps:
|
||||
# do not list /usr/lib or /System libraries, only /opt (Brew) dependencies
|
||||
# TODO: Make an option to list them if wanted
|
||||
if re.match(r"^/opt/",deppath):
|
||||
if re.match(r"^/opt/",deppath) or re.match(r"^/usr/local/Cellar/",deppath):
|
||||
depobj = deps[deppath]
|
||||
print(str(deppath)+"\t"+str(depobj.slname))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user