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,4 @@
int main(int argc, char *argv[])
{
return 0;
}
@@ -0,0 +1,11 @@
project('test-reconfigure', 'c')
message('opt1 ' + get_option('opt1'))
message('opt2 ' + get_option('opt2'))
message('opt3 ' + get_option('opt3'))
message('opt4 ' + get_option('opt4'))
exe = executable('test1', 'main.c')
test('test1', exe)
sub1 = subproject('sub1')
@@ -0,0 +1,4 @@
option('opt1', type : 'string', value : 'default1')
option('opt2', type : 'string', value : 'default2')
option('opt3', type : 'string', value : 'default3')
option('opt4', type : 'string', value : 'default4')
@@ -0,0 +1,3 @@
project('sub1')
message('sub1:werror @0@'.format(get_option('werror')))