forked from AuroraMiddleware/gtk
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:
parent
18abb78bfd
commit
95beabe4d6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user