From 2688413608127ff5d8b5b1f386ffc8e5229aa6c2 Mon Sep 17 00:00:00 2001 From: laggykiller Date: Sat, 23 Sep 2023 18:56:47 +0800 Subject: [PATCH] Revert to compile dependencies on all Linux --- get_deps.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/get_deps.py b/get_deps.py index 36d4049..56139cf 100755 --- a/get_deps.py +++ b/get_deps.py @@ -29,11 +29,8 @@ def install_deps(arch): settings.append('arch=' + arch) build = [] - if (platform.system() == 'Linux' and - os.path.isdir('/lib') and - len([i for i in os.listdir('/lib') if i.startswith('libc.musl')]) != 0): - - # Need to compile dependencies if musllinux + if (platform.system() == 'Linux'): + # Need to compile dependencies if Linux build.append('*') elif (not shutil.which('cmake') and (platform.architecture()[0] == '32bit' or