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.
This commit is contained in:
Emmanuele Bassi 2017-10-20 11:22:45 +01:00
parent 18abb78bfd
commit 95beabe4d6

View File

@ -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