From 2f9730b66feca99512f8488536fd02811978a13a Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 30 Oct 2024 11:36:13 +0100 Subject: [PATCH] configure.ac: fix EOL garbage Added accidentaly by the commit 73572e77 (2024-03-05). Effective only if --with-cuda option used but without any implications - just `/FOUN: not found` printed, but processed normally. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 391f0a17a..f47c1886d 100644 --- a/configure.ac +++ b/configure.ac @@ -471,7 +471,7 @@ AC_ARG_ENABLE(cuda, [cuda_req=$build_default]) AC_ARG_WITH(cuda, - [ --with-cuda=DIR specify location of CUDA Toolkit],/FOUN + [ --with-cuda=DIR specify location of CUDA Toolkit], [CUDA_PATH=$withval ])