Skip to content

Commit 2279ddd

Browse files
committed
MDEV-30457 Windows, signtool error "No file digest algorithm specified."
Add /fd parameter. It is now mandatory for the recent versions of signtool
1 parent 7fe9324 commit 2279ddd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/install_macros.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ IF(WIN32)
182182
MARK_AS_ADVANCED(SIGNCODE)
183183
IF(SIGNCODE)
184184
SET(SIGNTOOL_PARAMETERS
185-
/a /t http://timestamp.globalsign.com/?signature=sha2
185+
/a /fd SHA256 /t http://timestamp.globalsign.com/?signature=sha2
186186
CACHE STRING "parameters for signtool (list)")
187187
IF(NOT SIGNTOOL_EXECUTABLE)
188188
FILE(GLOB path_list

0 commit comments

Comments
 (0)