summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCharles Brunet <charles.brunet@optelgroup.com>2023-03-15 09:29:13 -0400
committerEli Schwartz <eschwartz93@gmail.com>2023-03-17 02:05:23 -0400
commit91b88b1a763c21b899a4c673a84859c8bc63b127 (patch)
tree9390cb388c97469fa613480b5b057a49614dd425 /docs
parent72cd2a395a240f050b6225b9aed876ee214ecd8c (diff)
downloadmeson-91b88b1a763c21b899a4c673a84859c8bc63b127.tar.gz
fix meson compile with alias target
this fixes a bug introduced by #11528
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Commands.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Commands.md b/docs/markdown/Commands.md
index b7b72c495..52eb76c1d 100644
--- a/docs/markdown/Commands.md
+++ b/docs/markdown/Commands.md
@@ -61,7 +61,7 @@ Builds a default or a specified target of a configured Meson project.
`TARGET` has the following syntax `[PATH/]NAME[:TYPE]`, where:
- `NAME`: name of the target from `meson.build` (e.g. `foo` from `executable('foo', ...)`).
- `PATH`: path to the target relative to the root `meson.build` file. Note: relative path for a target specified in the root `meson.build` is `./`.
-- `TYPE`: type of the target. Can be one of the following: 'executable', 'static_library', 'shared_library', 'shared_module', 'custom', 'run', 'jar'.
+- `TYPE`: type of the target. Can be one of the following: 'executable', 'static_library', 'shared_library', 'shared_module', 'custom', 'alias', 'run', 'jar'.
`PATH` and/or `TYPE` can be omitted if the resulting `TARGET` can be
used to uniquely identify the target in `meson.build`.