build: Use correct variable for gathering built headers

We added things unused variable, which is a bit useless.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3131>
This commit is contained in:
Jonas Ådahl 2023-07-20 11:35:00 +02:00 committed by Marge Bot
parent f5ff0f732a
commit e96475bb8d

View File

@ -1165,7 +1165,7 @@ mutter_built_sources += mutter_enum_types
mutter_built_headers = []
foreach built_source : mutter_built_sources
if built_source.full_path().endswith('.h')
built_headers += [built_source]
mutter_built_headers += [built_source]
endif
endforeach