qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/3] meson: List modules built in summary


From: Paolo Bonzini
Subject: Re: [PATCH 3/3] meson: List modules built in summary
Date: Thu, 27 May 2021 22:08:54 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1

On 25/05/21 12:46, Philippe Mathieu-Daudé wrote:
+  k = []
+    foreach m, _ : list
+      k += [m]
+    endforeach
+  summary_info += {d: ' '.join(k)}

Perhaps:

foreach dir, list : modules
  if list.keys().length() > 0
    summary_info += {dir: ' '.join(list.keys())}
  endif
endforeach

Paolo

+endforeach
+summary(summary_info, bool_yn: true, section: 'Modules')
+




reply via email to

[Prev in Thread] Current Thread [Next in Thread]