meson: Correct the option for disabled int10 from 'disabled' to 'false'

Fix meson_option.txt to align with the check of the int10 option against
'disabled', not 'false' in hw/xfree/meson.build, to see if it shouldn't be
built at all.

This keeps everything consistent that 'false' always turns things off.

Not noticed before as options weren't validated against choices until meson
0.43

Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
This commit is contained in:
Jon Turney 2017-12-22 18:44:01 +00:00 committed by Adam Jackson
parent c601c8faf5
commit da4ffb2f6a

View File

@ -110,7 +110,7 @@ subdir('fbdevhw')
if gbm_dep.found()
subdir('glamor_egl')
endif
if int10 != 'disabled'
if int10 != 'false'
if int10 == 'x86emu'
subdir('x86emu')
endif