From: Michal Privoznik Date: Tue, 24 Sep 2024 07:26:43 +0000 (+0200) Subject: meson: Restore alphabetical order of reported libraries X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=794d49e3cf75309f130871d9ab5833b04a42e638;p=libvirt.git meson: Restore alphabetical order of reported libraries One of previous commits introduced json-c library and reports it in the summary at the end. However, we like the list to be sorted alphabetically which is not the case. Signed-off-by: Michal Privoznik Reviewed-by: Pavel Hrdina --- diff --git a/meson.build b/meson.build index 477dbc29d8..0ce9132320 100644 --- a/meson.build +++ b/meson.build @@ -2306,8 +2306,8 @@ libs_summary = { 'dlopen': dlopen_dep.found(), 'fuse': fuse_dep.found(), 'glusterfs': glusterfs_dep.found(), - 'libbsd': libbsd_dep.found(), 'json-c': json_c_dep.found(), + 'libbsd': libbsd_dep.found(), 'libiscsi': libiscsi_dep.found(), 'libkvm': libkvm_dep.found(), 'libnbd': libnbd_dep.found(),