[at-spi2-core/gnome-3-36] meson: De-duplicate deps of 'Requires' in pkgconfig file



commit 2236149de17ec28864a31adc52ebb4ea20226367
Author: Soapux <7521-Soapux users noreply gitlab gnome org>
Date:   Tue May 19 17:42:37 2020 -0500

    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'.

 atspi/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
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',
 )


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]