From 82afc58f91629ddfefbd1f8fe059343577837294 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 19 Jun 2019 07:12:16 +1000 Subject: CMake: cleanup, unset temporary var after use --- build_files/cmake/macros.cmake | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'build_files/cmake/macros.cmake') diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake index f65dd174486..4095b7bc815 100644 --- a/build_files/cmake/macros.cmake +++ b/build_files/cmake/macros.cmake @@ -179,12 +179,13 @@ function(blender_source_group # remove ../'s get_filename_component(_SRC_DIR ${_SRC} REALPATH) get_filename_component(_SRC_DIR ${_SRC_DIR} DIRECTORY) - string(FIND ${_SRC_DIR} "${CMAKE_CURRENT_SOURCE_DIR}/" _POS) - if(NOT _POS EQUAL -1) + string(FIND ${_SRC_DIR} "${CMAKE_CURRENT_SOURCE_DIR}/" _pos) + if(NOT _pos EQUAL -1) string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" GROUP_ID ${_SRC_DIR}) string(REPLACE "/" "\\" GROUP_ID ${GROUP_ID}) source_group("${GROUP_ID}" FILES ${_SRC}) endif() + unset(_pos) endforeach() else() # Group by location on disk @@ -954,6 +955,7 @@ function(delayed_install endif() set_property(GLOBAL APPEND PROPERTY DELAYED_INSTALL_DESTINATIONS ${destination}) endforeach() + unset(f) endfunction() # note this is a function instead of a macro so that ${BUILD_TYPE} in targetdir -- cgit v1.2.3