fix typos
This commit is contained in:
parent
5600b8056b
commit
0b10242c36
2 changed files with 3 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ lib_list = [
|
||||||
# keep defaults in sync with setup.py
|
# keep defaults in sync with setup.py
|
||||||
if (
|
if (
|
||||||
os.getenv("PYGOMX_BUILD_MODE", "static") == "static"
|
os.getenv("PYGOMX_BUILD_MODE", "static") == "static"
|
||||||
and os.getenv("PYGOMX_OLM_FLAVOR", colm) == "colm"
|
and os.getenv("PYGOMX_OLM_FLAVOR", "colm") == "colm"
|
||||||
):
|
):
|
||||||
lib_list += ["olm"]
|
lib_list += ["olm"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,11 +47,11 @@ class CustomCommand(Command):
|
||||||
go_call = [
|
go_call = [
|
||||||
"go",
|
"go",
|
||||||
"build",
|
"build",
|
||||||
f"-buildmode=${build_mode_name}",
|
f"-buildmode={build_mode_name}",
|
||||||
"-tags",
|
"-tags",
|
||||||
",".join(go_tags),
|
",".join(go_tags),
|
||||||
"-o",
|
"-o",
|
||||||
f"../pygomx-module/libmxclient${build_mode_ext}",
|
f"../pygomx-module/libmxclient{build_mode_ext}",
|
||||||
".",
|
".",
|
||||||
]
|
]
|
||||||
subprocess.call(go_call, cwd="../libmxclient")
|
subprocess.call(go_call, cwd="../libmxclient")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue