From 95beabe4d65f7facf5afd1339134d58f3668e74b Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 20 Oct 2017 11:22:45 +0100 Subject: [PATCH] build: Fix gtk_tools array expansion The gtk_tools variable is an array of arrays; adding a new element requires to maintain the same type, or we'll get a build failure when we try to extract the newly added element. --- gtk/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/meson.build b/gtk/meson.build index 23c15eaa11..da95435a84 100644 --- a/gtk/meson.build +++ b/gtk/meson.build @@ -1027,7 +1027,7 @@ gtk_tools = [ ] if os_unix - gtk_tools += ['gtk4-launch', ['gtk-launch.c']] + gtk_tools += [['gtk4-launch', ['gtk-launch.c']]] endif foreach tool: gtk_tools