From f719635d57dc43099ba01129c188c8e0a7c89d78 Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Fri, 6 Oct 2023 22:52:23 -0700 Subject: [PATCH] Try to fix dependency check for how Brew works on Intel Macbooks --- appbundledeps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))