diff --git a/appbundledeps.py b/appbundledeps.py index 59f799fb42c..d8c9ddc1d48 100755 --- a/appbundledeps.py +++ b/appbundledeps.py @@ -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))