fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
project('d dedup', 'c')
|
||||
|
||||
add_project_arguments('-D', 'FOO', '-D', 'BAR', language : 'c')
|
||||
|
||||
executable('prog', 'prog.c')
|
||||
@@ -0,0 +1,14 @@
|
||||
#include<stdio.h>
|
||||
|
||||
#ifndef FOO
|
||||
#error FOO is not defined.
|
||||
#endif
|
||||
|
||||
#ifndef BAR
|
||||
#error BAR is not defined.
|
||||
#endif
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
printf("All is well.\n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user