fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include"lib.h"
|
||||
|
||||
char *meson_print(void)
|
||||
{
|
||||
return "Hello, world!";
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
char *meson_print(void);
|
||||
@@ -0,0 +1,8 @@
|
||||
#include<lib.h>
|
||||
#include<stdio.h>
|
||||
int main(void)
|
||||
{
|
||||
char *t = meson_print();
|
||||
printf("%s", t);
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
project('test spec', 'c')
|
||||
|
||||
rpm = import('rpm')
|
||||
dependency('zlib')
|
||||
find_program('nonexistprog', required : false)
|
||||
|
||||
lib = shared_library('mesontest_shared', ['lib.c', 'lib.h'],
|
||||
version : '0.1', soversion : '0',
|
||||
install : true)
|
||||
executable('mesontest-bin', 'main.c',
|
||||
link_with : lib,
|
||||
install : true)
|
||||
|
||||
rpm.generate_spec_template()
|
||||
Reference in New Issue
Block a user