From fbfb5afec0385fcec9d14b2d2554e29ce0276d47 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Wed, 28 Jan 2026 09:58:28 +0100 Subject: [PATCH] build: move the CLAT line in the meson summary Move the CLAT line from the Miscellaneous section to the Features one. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 39fb1aed9a..507462b205 100644 --- a/meson.build +++ b/meson.build @@ -1153,6 +1153,7 @@ output += ' ofono: ' + enable_ofono.to_string() + '\n' output += ' concheck: ' + enable_concheck.to_string() + '\n' output += ' libteamdctl: ' + enable_teamdctl.to_string() + '\n' output += ' ovs: ' + enable_ovs.to_string() + '\n' +output += ' clat: ' + enable_clat.to_string() + '\n' output += ' nmcli: ' + enable_nmcli.to_string() + '\n' output += ' nmtui: ' + enable_nmtui.to_string() + '\n' output += ' nm-cloud-setup: ' + enable_nm_cloud_setup.to_string() + '\n' @@ -1189,6 +1190,5 @@ output += 'have-nss: ' + crypto_nss_dep.found().to_string() + ')\n' output += ' sanitizers: ' + get_option('b_sanitize') + '\n' output += ' Mozilla Public Suffix List: ' + enable_libpsl.to_string() + '\n' output += ' vapi: ' + enable_vapi.to_string() + '\n' -output += ' clat: ' + enable_clat.to_string() + '\n' output += ' readline: ' + with_readline + '\n' message(output)