From 6f85be8d9cf79bf3cfb01ff599bd3c22e9f25aa6 Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Fri, 14 Oct 2022 18:45:04 +0300 Subject: [PATCH] More descriptive error message (mention needed ClamAV version) Signed-off-by: Mavridis Philippe --- ConfigureChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index a48e127..8e29910 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -38,7 +38,7 @@ find_package( X11 ) pkg_search_module( LIBCLAMAV libclamav>=0.102.0 ) if( NOT LIBCLAMAV_FOUND ) - tde_message_fatal( "ClamAV is required but not found on your system" ) + tde_message_fatal( "ClamAV >=0.102.0 is required but not found on your system" ) endif( NOT LIBCLAMAV_FOUND )