fix: noconfirm auto-selects first AUR match
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
project('libtestprovider','c')
|
||||
|
||||
libtestprovider=static_library('testprovider',
|
||||
files('./provider.c'),
|
||||
install:true,
|
||||
c_args:['-Wall','-Werror'],
|
||||
)
|
||||
|
||||
pkg = import('pkgconfig')
|
||||
|
||||
|
||||
pkg.generate(
|
||||
name:'testprovider',
|
||||
filebase:'libtestprovider',
|
||||
description: 'fortest',
|
||||
requires: [],
|
||||
libraries_private: ['-Wl,--whole-archive'] +
|
||||
['-L${libdir}','-l:libtestprovider.a']+
|
||||
['-Wl,--no-whole-archive']
|
||||
)
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
static int g_checked = 0;
|
||||
|
||||
static void __attribute__((constructor(101), used)) init_checked(void) {
|
||||
g_checked=100;
|
||||
fprintf(stdout, "inited\n");
|
||||
}
|
||||
|
||||
|
||||
int get_checked(void) {
|
||||
return g_checked;
|
||||
}
|
||||
Reference in New Issue
Block a user