Skip to content

Commit

Permalink
Revert to compile dependencies on all Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Sep 23, 2023
1 parent 20a465b commit 2688413
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions get_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2688413

Please sign in to comment.