pull/13693/head
spaette 2 months ago committed by Dylan Baker
parent e5d03f5e13
commit 19f9369b4c
  1. 4
      docs/markdown/Release-notes-for-1.3.0.md
  2. 2
      docs/markdown/Subprojects.md
  3. 2
      docs/markdown/Wrap-dependency-system-manual.md
  4. 2
      test cases/unit/121 executable suffix/meson.build

@ -89,8 +89,8 @@ you to set the environment in which the generator will process inputs.
In previous versions of meson, a `meson.build` file like this:
```
exectuable('foo', 'main.c')
exectuable('foo', 'main.c', name_suffix: 'bar')
executable('foo', 'main.c')
executable('foo', 'main.c', name_suffix: 'bar')
```
would result in a configure error because meson internally used

@ -300,7 +300,7 @@ types. Multiple types can be set as comma separated list e.g. `--types
git,file`.
*Since 0.56.0* If the subcommand fails on any subproject an error code
is returned at the end instead of retuning success.
is returned at the end instead of returning success.
### Download subprojects

@ -379,7 +379,7 @@ Some naming conventions need to be respected:
Since *1.5.0* Cargo wraps can also be provided with `Cargo.lock` file at the root
of (sub)project source tree. Meson will automatically load that file and convert
it into a serie of wraps definitions.
it into a series of wraps definitions.
## Using wrapped projects

@ -1,3 +1,3 @@
project('exectuable suffix', 'c')
project('executable suffix', 'c')
foo = executable('foo', 'main.c')
foo_bin = executable('foo', 'main.c', name_suffix: 'bin')

Loading…
Cancel
Save