download-macos-libs.py: Skip mesa, llvm

This commit is contained in:
Matt Borgerson 2024-12-27 00:47:44 -07:00 committed by mborgerson
parent 79441500fe
commit 0308baa4b0
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class LibInstaller:
shell=True, check=True)
def is_pkg_skipped(self, pkg_name):
return any(pkg_name.startswith(n) for n in ('python', 'ncurses'))
return any(pkg_name.startswith(n) for n in ('python', 'ncurses', 'mesa', 'llvm'))
def install_pkg(self, pkg_name):
if self.is_pkg_installed(pkg_name):