From 47a98af9946e6db0a7001646c82523edfbae616e Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Wed, 4 Mar 2020 00:24:47 +0100 Subject: [PATCH] fix make distcheck, but the definition of this target (not its configuration), this time I suspect that this broke when we low-cased the project name somehow, but I fail to really understand the breakage. Anyway, it's fixed now. --- tools/cmake/Distrib.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cmake/Distrib.cmake b/tools/cmake/Distrib.cmake index 31f04b0a86..72d8a98642 100644 --- a/tools/cmake/Distrib.cmake +++ b/tools/cmake/Distrib.cmake @@ -305,7 +305,7 @@ add_custom_target(distcheck COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_TEST_DIR}/${PROJECT_NAME}-${release_version} COMMAND ${CMAKE_COMMAND} -E echo "XXX Untar distrib" - COMMAND ${CMAKE_COMMAND} -E tar xf ${CMAKE_BINARY_TEST_DIR}/${PROJECT_NAME}-${release_version}.tar.gz ${CMAKE_BINARY_TEST_DIR}/${PROJECT_NAME}-${release_version} + COMMAND ${CMAKE_COMMAND} -E tar xf ${CMAKE_BINARY_TEST_DIR}/${PROJECT_NAME}-${release_version}.tar.gz COMMAND ${CMAKE_COMMAND} -E echo "XXX Create build and install subtrees" COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_TEST_DIR}/${PROJECT_NAME}-${release_version}/_build -- 2.20.1