fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#if defined _WIN32 || defined __CYGWIN__
|
||||
#define DLL_PUBLIC __declspec(dllexport)
|
||||
#else
|
||||
#define DLL_PUBLIC
|
||||
#endif
|
||||
|
||||
int DLL_PUBLIC foo(void) {
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
int main(int argc, char *argv[]) {
|
||||
return 0;
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
configure_file(input: 'foo2.in', output: 'foo2.h',
|
||||
configuration: {'foo': 'bar'},
|
||||
install_dir: get_option('datadir'),
|
||||
install: true,
|
||||
)
|
||||
custom_target('ct4',
|
||||
output: ['out1.txt', 'out2.txt'],
|
||||
command: ['script.py', '@OUTPUT@'],
|
||||
install_dir: get_option('datadir'),
|
||||
install: true,
|
||||
)
|
||||
install_headers('foo3-devel.h')
|
||||
install_data('bar2-devel.h',
|
||||
install_dir: get_option('includedir'),
|
||||
)
|
||||
executable('app2', 'main.c',
|
||||
install: true,
|
||||
)
|
||||
both_libraries('both2', 'lib.c',
|
||||
install: true,
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
|
||||
for f in sys.argv[1:]:
|
||||
with open(f, 'w') as f:
|
||||
pass
|
||||
Reference in New Issue
Block a user