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
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user