From 04b02f066332b62aaecb3cb8b931b6df8b68d644 Mon Sep 17 00:00:00 2001 From: Rob Norris Date: Sat, 12 Apr 2025 04:56:14 +1000 Subject: [PATCH] config: fix ZFS_LINUX_TEST_RESULT_SYMBOL with --enable-linux-builtin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tiniest typo in dd2a46b5e6 (#17106) broke it, by setting the wrong var with the test var, resulting in it always producing "no". Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Alexander Motin Reviewed by: Attila Fülöp Signed-off-by: Rob Norris Closes #17236 --- config/kernel.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/kernel.m4 b/config/kernel.m4 index 6ba0aeacd..29bf58868 100644 --- a/config/kernel.m4 +++ b/config/kernel.m4 @@ -899,7 +899,7 @@ AC_DEFUN([ZFS_LINUX_TEST_RESULT_SYMBOL], [ eval "$cachevar=no" ]) ], [ - eval "$cacheval=yes" + eval "$cachevar=yes" ]) ]) ])