From 818550b54dd9e32ff8fdb7d90c86c79626985354 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 3 Nov 2014 14:17:10 +0100 Subject: [PATCH] The output variable from find_library() needs to be cleared Otherwise you'll just get the initial response back every time you call it. --- cmake/Modules/CMakeMacroLibtoolFile.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmake/Modules/CMakeMacroLibtoolFile.cmake b/cmake/Modules/CMakeMacroLibtoolFile.cmake index b3b4a9bb..a265789e 100644 --- a/cmake/Modules/CMakeMacroLibtoolFile.cmake +++ b/cmake/Modules/CMakeMacroLibtoolFile.cmake @@ -45,6 +45,8 @@ macro(libtool_create_control_file _target) else() # No shared library found, so ignore target. endif() + # Need to clear FL to get new results next loop + unset(FL CACHE) else() # Target is a CMake target, so ignore if (CMake targets are static # libs in TigerVNC.) @@ -69,6 +71,8 @@ macro(libtool_create_control_file _target) else() # No absolute pathname found. Ignore it. endif() + # Need to clear FL to get new results next loop + unset(FL CACHE) endif() endif() endforeach() -- 2.39.5