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,3 @@
project('cmake_set_opt', ['c', 'cpp'])
import('cmake').subproject('cmOpts', cmake_options: '-DSOME_CMAKE_VAR=something')
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.7)
project(testPro)
if(NOT "${SOME_CMAKE_VAR}" STREQUAL "something")
message(FATAL_ERROR "Setting the CMake var failed")
endif()
if(NOT "${CMAKE_PREFIX_PATH}" STREQUAL "val1;val2")
message(FATAL_ERROR "Setting the CMAKE_PREFIX_PATH failed '${CMAKE_PREFIX_PATH}'")
endif()
@@ -0,0 +1,12 @@
{
"matrix": {
"options": {
"cmake_prefix_path": [
{ "val": ["val1", "val2"] }
],
"build.cmake_prefix_path": [
{ "val": ["val1", "val2"] }
]
}
}
}