aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscontini76 <s.contini76@gmail.com>2018-03-30 17:04:28 +0200
committerAleksey Filippov <sarum9in@gmail.com>2018-03-31 09:50:35 -0700
commit1c1277de7c8035f7a4b67b2606dd973a10dbc7d9 (patch)
treedb9db94cac8da60bbb58fc00605c6da9af1b4cc0
parent16c4a3b4f8bfb353603bca72c20484ecbcb134e6 (diff)
downloadmeson-1c1277de7c8035f7a4b67b2606dd973a10dbc7d9.zip
meson-1c1277de7c8035f7a4b67b2606dd973a10dbc7d9.tar.gz
meson-1c1277de7c8035f7a4b67b2606dd973a10dbc7d9.tar.bz2
Update Pkg-config-files.md [skip ci]
typo: seems that configure_files doesn't exists, maybe you mean configure_file here. [skip ci]
-rw-r--r--docs/markdown/Pkg-config-files.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Pkg-config-files.md b/docs/markdown/Pkg-config-files.md
index dde4ac9..ddb8bab 100644
--- a/docs/markdown/Pkg-config-files.md
+++ b/docs/markdown/Pkg-config-files.md
@@ -1,6 +1,6 @@
# Pkg config files
-[Pkg-config](https://en.wikipedia.org/wiki/Pkg-config) is a way for shared libraries to declare the compiler flags needed to use them. There are two different ways of generating Pkg-config files in Meson. The first way is to build them manually with the `configure_files` command. The second way is to use Meson's built in Pkg-config file generator. The difference between the two is that the latter is very simple and meant for basic use cases. The former should be used when you need to provide a more customized solution.
+[Pkg-config](https://en.wikipedia.org/wiki/Pkg-config) is a way for shared libraries to declare the compiler flags needed to use them. There are two different ways of generating Pkg-config files in Meson. The first way is to build them manually with the `configure_file` command. The second way is to use Meson's built in Pkg-config file generator. The difference between the two is that the latter is very simple and meant for basic use cases. The former should be used when you need to provide a more customized solution.
In this document we describe the simple generator approach. It is used in the following way.