mbox series

[v3,0/2] replace int flags with booleans

Message ID 20230613153333.164365-1-bruce.richardson@intel.com (mailing list archive)
Headers
Series replace int flags with booleans |

Message

Bruce Richardson June 13, 2023, 3:33 p.m. UTC
  in meson.build files, some flags were being treated as integers rather
than using the more logical option of booleans. Fix this.

V3: drop the patch requiring libnuma from this set, to make this only
   a simple set changing the types of the flag. The other patch will be
   submitted separately for better tracking.

Bruce Richardson (2):
  build: change NUMA flag variable type to boolean
  build: change libfdt flag variable type to boolean

 config/arm/meson.build         | 2 +-
 config/meson.build             | 8 ++++----
 drivers/net/ipn3ke/meson.build | 2 +-
 drivers/raw/ifpga/meson.build  | 2 +-
 lib/eal/linux/meson.build      | 2 +-
 lib/vhost/meson.build          | 2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

--
2.39.2
  

Comments

David Marchand June 15, 2023, 1:53 p.m. UTC | #1
On Tue, Jun 13, 2023 at 5:34 PM Bruce Richardson
<bruce.richardson@intel.com> wrote:
>
> in meson.build files, some flags were being treated as integers rather
> than using the more logical option of booleans. Fix this.
>
> V3: drop the patch requiring libnuma from this set, to make this only
>    a simple set changing the types of the flag. The other patch will be
>    submitted separately for better tracking.
>
> Bruce Richardson (2):
>   build: change NUMA flag variable type to boolean
>   build: change libfdt flag variable type to boolean

Series applied, thanks Bruce.