From e96475bb8d9eb683199696b29a279e5622a2f2b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Thu, 20 Jul 2023 11:35:00 +0200 Subject: [PATCH] build: Use correct variable for gathering built headers We added things unused variable, which is a bit useless. Part-of: --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index f8bcdba8c..bb9a9c853 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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