From f5c69cbfdc9279d2e01bc7a01594abebf04e344a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 17 Jan 2018 17:32:48 +0100 Subject: [PATCH] build: Fix generated classic session definition The list of enabled extensions should be an array of strings, so add quotes instead of just dumping the extension names into the file. https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/45 --- data/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/meson.build b/data/meson.build index 43e2aee4..1e45638e 100644 --- a/data/meson.build +++ b/data/meson.build @@ -14,7 +14,7 @@ foreach s : sessions endforeach mode_conf = configuration_data() -mode_conf.set('CLASSIC_EXTENSIONS', ','.join(classic_extensions)) +mode_conf.set('CLASSIC_EXTENSIONS', '"' + '", "'.join(classic_extensions) + '"') mode_file = 'classic.json' configure_file(