summaryrefslogtreecommitdiff
path: root/atspi/meson.build
diff options
context:
space:
mode:
authorSoapux <7521-Soapux@users.noreply.gitlab.gnome.org>2020-05-19 17:42:37 -0500
committerSoapux <7521-Soapux@users.noreply.gitlab.gnome.org>2020-05-19 17:42:37 -0500
commit303c9360c5d824a3bf58c386af0110980fa8de89 (patch)
tree8a560397ed92e90c9e0f46db6a765c4619ade842 /atspi/meson.build
parenta8e3e2ef2c3030c563183f4308aa8e63621eac64 (diff)
downloadat-spi2-core-303c9360c5d824a3bf58c386af0110980fa8de89.tar.gz
meson: De-duplicate deps of 'Requires' in pkgconfig file
Fix my mistake of listing dependencies in 'requires' as a string instead of as pkgconfig dependencies. It was causing duplicates in 'Requires.private'.
Diffstat (limited to 'atspi/meson.build')
-rw-r--r--atspi/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/atspi/meson.build b/atspi/meson.build
index 8a2ca27d..5797f73a 100644
--- a/atspi/meson.build
+++ b/atspi/meson.build
@@ -127,7 +127,7 @@ pkgconfig.generate(
description: 'Accessibility Technology software library',
version: meson.project_version(),
libraries: atspi,
- requires: 'dbus-1 glib-2.0',
+ requires: ['dbus-1', 'glib-2.0'],
subdirs: 'at-spi-2.0',
filebase: 'atspi-2',
)