grim/pidgin

10b60bd1cafa
Parents f44497b3f5d9
Children 93ce4ded9831
Fix a meson warning about concatenating lists and strings

This is actually allowed in newer versions, but this variable should be a list
anyways.

Testing Done:
Ran `ninja reconfigure` and verified that the warning was gone.

Reviewed at https://reviews.imfreedom.org/r/2493/
--- a/libpurple/data/meson.build Thu Jun 22 21:06:18 2023 -0500
+++ b/libpurple/data/meson.build Sat Jul 01 01:48:19 2023 -0500
@@ -21,5 +21,5 @@
gnome.post_install(glib_compile_schemas: true)
# Compile the schemas in the current directory; this is only useful for testing
-purple_schemas = gnome.compile_schemas(depend_files: files(settings_schemas))
+purple_schemas = [gnome.compile_schemas(depend_files: files(settings_schemas))]
testenv.prepend('GSETTINGS_SCHEMA_DIR', meson.current_build_dir())