diff options
-rw-r--r-- | cmake/Modules/CMakeMacroLibtoolFile.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
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() |