aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Filippov <alekseyf@google.com>2018-02-23 00:08:24 +0000
committerAleksey Filippov <alekseyf@google.com>2018-02-23 00:24:16 +0000
commit02bd4be0e6c23b22c83569dd681a0a5a879bdf6a (patch)
tree12115ff677a338e01c124352c0dbf3503f48adba
parent221c3ec105e2765356f180e01591ebcad3588ced (diff)
downloadmeson-02bd4be0e6c23b22c83569dd681a0a5a879bdf6a.zip
meson-02bd4be0e6c23b22c83569dd681a0a5a879bdf6a.tar.gz
meson-02bd4be0e6c23b22c83569dd681a0a5a879bdf6a.tar.bz2
Fix misprint in pkgconfig comment
-rw-r--r--mesonbuild/modules/pkgconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/pkgconfig.py b/mesonbuild/modules/pkgconfig.py
index 5573a2e..7c6b3a8 100644
--- a/mesonbuild/modules/pkgconfig.py
+++ b/mesonbuild/modules/pkgconfig.py
@@ -96,7 +96,7 @@ class DependenciesHelper:
self.priv_reqs = list(set(self.priv_reqs))
self.cflags = list(set(self.cflags))
- # Remove from pivate libs/reqs if they are in public already
+ # Remove from private libs/reqs if they are in public already
self.priv_libs = [i for i in self.priv_libs if i not in self.pub_libs]
self.priv_reqs = [i for i in self.priv_reqs if i not in self.pub_reqs]