diff options
author | Luke Smith <lukesmith.geo@gmail.com> | 2024-10-30 12:57:41 +0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-10-31 17:39:16 -0400 |
commit | a608e56beba7eb1b3335e824ba2f1fe8453f0979 (patch) | |
tree | 3f4d9ed92ebd623156659a18243c6fd1f2b77933 | |
parent | 6091ef0f5aa556c9967990cedfb64868028c64ed (diff) | |
download | meson-a608e56beba7eb1b3335e824ba2f1fe8453f0979.zip meson-a608e56beba7eb1b3335e824ba2f1fe8453f0979.tar.gz meson-a608e56beba7eb1b3335e824ba2f1fe8453f0979.tar.bz2 |
Correct typo in example Python module option
python.install_env is the correct command, as documented
in https://mesonbuild.com/Builtin-options.html#python-module.
python.install_venv causes an error, it is not immediately obvious
that the slight typo is the cause.
-rw-r--r-- | docs/markdown/Python-module.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Python-module.md b/docs/markdown/Python-module.md index f3ee9ff..cd2a641 100644 --- a/docs/markdown/Python-module.md +++ b/docs/markdown/Python-module.md @@ -18,7 +18,7 @@ compatible with [PEP-517](https://peps.python.org/pep-0517/), check out If you are building Python extension modules against a Python interpreter located in a venv or Conda environment, you probably want to set -`python.install_venv=auto`; +`python.install_env=auto`; see [Python module options](Builtin-options.md#python-module) for details. *Added 0.46.0* |