Fix if statement that triggers syntax error in CMake 3.20 and later. Taken from upstream: https://github.com/mariadb-corporation/mariadb-connector-c/commit/242cab8c diff --git a/libmariadb/cmake/ConnectorName.cmake b/libmariadb/cmake/ConnectorName.cmake --- a/libmariadb/cmake/ConnectorName.cmake +++ b/libmariadb/cmake/ConnectorName.cmake @@ -22,7 +22,7 @@ IF(CMAKE_SYSTEM_NAME MATCHES "Windows") SET(MACHINE_NAME "x64") ELSE() SET(MACHINE_NAME "32") - END() + ENDIF() ENDIF() SET(product_name "mysql-connector-c-${CPACK_PACKAGE_VERSION}-${PLATFORM_NAME}${CONCAT_SIGN}${MACHINE_NAME}")pe='hidden' name='id' value='d2b7d14db4a1ba454d781f5ea796c4a457aaef02'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-locate.sh
AgeCommit message (Expand)Author
2023-11-15locate: Accept ‘--clear’ without additional arguments....Fixes a bug whereby ‘guix locate --clear’ would end with the “no files to search for” error. Fixes <https://issues.guix.gnu.org/66799>. * guix/scripts/locate.scm (guix-locate): Do not emit “no files to search for” error when 'clear? is set in OPTS. * tests/guix-locate.sh: Test it. Reported-by: Maciej Kalandyk <m.kalandyk@outlook.com> Change-Id: Ib8fa125c18481d7f5408bd89df9503713527641d Ludovic Courtès