build goolm as default

This commit is contained in:
saces 2026-04-04 10:31:04 +02:00
parent 906fef602c
commit 655cf4e46f
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ lib_list = [
# keep defaults in sync with setup.py
if (
os.getenv("PYGOMX_BUILD_MODE", "static") == "static"
and os.getenv("PYGOMX_OLM_FLAVOR", "colm") == "colm"
and os.getenv("PYGOMX_OLM_FLAVOR", "goolm") == "colm"
):
lib_list += ["olm"]

View file

@ -50,7 +50,7 @@ class CustomCommand(Command):
case _:
raise ValueError("Invalid PYGOMX_BUILD_MODE.")
match os.getenv("PYGOMX_OLM_FLAVOR", "colm"):
match os.getenv("PYGOMX_OLM_FLAVOR", "goolm"):
case "none":
go_tags += ["nocrypto"]
case "colm":