From 4495b72f991ba55bf59bf2cd910da72a09cebf8c Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Sun, 11 Dec 2016 14:04:37 +0100 Subject: [PATCH] Update .la files on each build This makes sure other build systems trigger properly, e.g. when building Xvnc. --- cmake/Modules/CMakeMacroLibtoolFile.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmake/Modules/CMakeMacroLibtoolFile.cmake b/cmake/Modules/CMakeMacroLibtoolFile.cmake index a54d9949..1d8b8fc0 100644 --- a/cmake/Modules/CMakeMacroLibtoolFile.cmake +++ b/cmake/Modules/CMakeMacroLibtoolFile.cmake @@ -132,6 +132,10 @@ macro(libtool_create_control_file _target) file(APPEND ${_laname} "dlpreopen=''\n\n") file(APPEND ${_laname} "libdir='/usr/lib'\n\n") + # Make sure the timestamp is updated to trigger other make invocations + add_custom_command(TARGET ${_target} POST_BUILD COMMAND + "${CMAKE_COMMAND}" -E touch "${_laname}") + # Add custom command to symlink the static library so that autotools finds # the library in .libs. These are executed after the specified target build. -- 2.39.5