Skip to content

Commit

Permalink
Do not build uuid on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed Nov 23, 2023
1 parent 5272b2f commit 2a2d6ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kiwixbuild/dependencies/xapian.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ class Builder(MakeBuilder):
def get_dependencies(cls, platformInfo, allDeps):
deps = ['zlib', 'lzma']
if (platformInfo.build in ('win32', 'wasm')
or neutralEnv('distname') == 'Darwin'):
or neutralEnv('distname') in ('Darwin', 'Windows')):
return deps
return deps + ['uuid']

0 comments on commit 2a2d6ce

Please sign in to comment.