Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make line ending of generated .md5 compatible with one in the output … #30

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Make line ending of generated .md5 compatible with one in the output …
…of 'cmake -E md5sum' command.
  • Loading branch information
shinji-s committed Aug 20, 2020
commit 1748bb9fbb4c8f90cdcdbf38867e3f9abc3a2391
2 changes: 1 addition & 1 deletion cmake/ecbuild_get_test_data.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function( ecbuild_get_test_data )
COMMAND ${CMAKE_COMMAND} -E md5sum ${_p_NAME} > ${_p_NAME}.localmd5
DEPENDS ${_p_NAME} )

configure_file( "${ECBUILD_MACROS_DIR}/md5.in" ${_p_NAME}.md5 @ONLY )
configure_file( "${ECBUILD_MACROS_DIR}/md5.in" ${_p_NAME}.md5 @ONLY NEWLINE_STYLE LF )

add_custom_command( OUTPUT ${_p_NAME}.ok
COMMAND ${CMAKE_COMMAND} -E compare_files ${_p_NAME}.md5 ${_p_NAME}.localmd5 &&
Expand Down