diff options
author | Will Thompson <will@willthompson.co.uk> | 2018-09-17 15:51:22 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-09-17 08:00:07 -0700 |
commit | f5bb3005a220d28926ce50692eafa90b15918e79 (patch) | |
tree | af8b3e41b492496f429a5e7f848b3549fa737a62 | |
parent | c352434a7a86ad8c3f642a8072ae50c1506f6487 (diff) | |
download | meson-f5bb3005a220d28926ce50692eafa90b15918e79.zip meson-f5bb3005a220d28926ce50692eafa90b15918e79.tar.gz meson-f5bb3005a220d28926ce50692eafa90b15918e79.tar.bz2 |
Pkgconfig-module.md: fix typos [skip ci]
Almost every keyword documented here takes this form:
- `foo` bar
with no comma after the keyword. Make `filebase` consistent, and fix a
comma splice.
Fix 'Arbitraty' typo in `libraries` documentation.
-rw-r--r-- | docs/markdown/Pkgconfig-module.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Pkgconfig-module.md b/docs/markdown/Pkgconfig-module.md index 77db809..b727f1a 100644 --- a/docs/markdown/Pkgconfig-module.md +++ b/docs/markdown/Pkgconfig-module.md @@ -17,13 +17,13 @@ keyword arguments. - `description` a string describing the library - `extra_cflags` a list of extra compiler flags to be added to the `Cflags` field after the header search path -- `filebase`, the base name to use for the pkg-config file, as an - example the value of `libfoo` would produce a pkg-config file called +- `filebase` the base name to use for the pkg-config file; as an + example, the value of `libfoo` would produce a pkg-config file called `libfoo.pc` - `install_dir` the directory to install to, defaults to the value of option `libdir` followed by `/pkgconfig` - `libraries` a list of built libraries (usually results of - shared_library) that the user needs to link against. Arbitraty strings can + shared_library) that the user needs to link against. Arbitrary strings can also be provided and they will be added into the `Libs` field. Since 0.45.0 dependencies of built libraries will be automatically added to `Libs.private` field. If a dependency is provided by pkg-config then it will be added in |