mirror of https://github.com/xemu-project/xemu.git
scripts/download-macos-libs.py: Skip libsndfile
This commit is contained in:
parent
4ca9cd9691
commit
41ad49c9e9
|
@ -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', 'mesa', 'llvm'))
|
||||
return any(pkg_name.startswith(n) for n in ('python', 'ncurses', 'mesa', 'llvm', 'libsndfile'))
|
||||
|
||||
def install_pkg(self, pkg_name):
|
||||
if self.is_pkg_installed(pkg_name):
|
||||
|
|
Loading…
Reference in New Issue