build: remove meson warning for Arm
authorJerin Jacob <jerinj@marvell.com>
Tue, 19 Mar 2019 17:22:20 +0000 (17:22 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 26 Mar 2019 22:31:47 +0000 (23:31 +0100)
Remove the following warning by comparing string to string.

config/arm/meson.build:153: WARNING: Trying to compare values of
different types (list, str) using ==.

Fixes: c6e536e38437 ("build: add more implementers IDs and PNs for ARM")
Cc: stable@dpdk.org
Signed-off-by: Jerin Jacob <jerinj@marvell.com>
Acked-by: Luca Boccassi <bluca@debian.org>
config/arm/meson.build

index 8e892fa..170a498 100644 (file)
@@ -116,8 +116,8 @@ else
                        cmd_output = cmd.stdout().to_lower().strip().split(' ')
                endif
                # Set to generic if variable is not found
-               machine = get_variable('impl_' + cmd_output[0], 'generic')
-               if machine == 'generic'
+               machine = get_variable('impl_' + cmd_output[0], ['generic'])
+               if machine[0] == 'generic'
                        machine = impl_generic
                        cmd_output = cmd_generic
                endif