Skip to content

Commit

Permalink
Try to fix dependency check for how Brew works on Intel Macbooks
Browse files Browse the repository at this point in the history
  • Loading branch information
joncampbell123 committed Oct 7, 2023
1 parent c7f4612 commit f719635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appbundledeps.py
Expand Up @@ -128,7 +128,7 @@ def GetDepList(exe,modpath=None,exepath=None):
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))

0 comments on commit f719635

Please sign in to comment.