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,6 @@
#include<stdio.h>
int main(int argc, char **argv) {
printf("Clash 2.\n");
return 0;
}
@@ -0,0 +1,15 @@
project('clash', 'c')
# This setup causes a namespace clash when two Meson targets would
# produce a Ninja targets with the same name. It only works on
# unix, because on Windows the target has a '.exe' suffix.
#
# This test might fail to work on different backends or when
# output location is redirected.
if host_machine.system() == 'windows' or host_machine.system() == 'cygwin'
error('MESON_SKIP_TEST test only works on platforms where executables have no suffix.')
endif
executable('clash', 'clash.c')
run_target('clash', command: ['echo', 'clash 1'])
@@ -0,0 +1,7 @@
{
"stdout": [
{
"line": "ERROR: Multiple producers for Ninja target \"clash\". Please rename your targets."
}
]
}