fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,20 @@
project('deprecated options',
default_options: [
'o1=false',
'o2=a,b',
'o3=a,b',
'o4=true',
'o5=auto',
'o6=false',
'o8=/foo',
]
)
assert(get_option('o1') == false)
assert(get_option('o2') == ['a', 'b'])
assert(get_option('o3') == ['c', 'b'])
assert(get_option('o4').enabled())
assert(get_option('o5') == false)
assert(get_option('o6') == false)
assert(get_option('o7').disabled())
assert(get_option('python.platlibdir') == '/foo')