Browse Source

fix accidental deletion

pull/4695/head
Martin Kroeker GitHub 2 years ago
parent
commit
e136c9ff86
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmake/utils.cmake

+ 1
- 1
cmake/utils.cmake View File

@@ -188,7 +188,7 @@ macro(ParseMakefileVars MAKEFILE_IN)
set (STR ${CMAKE_MATCH_4})
endif ()
if (DEFINED CMAKE_MATCH_1 AND ${HasValidGroup} EQUAL 1)
if (NOT CMAKE_MATCH_1 STREQUAL ${STR}))
if (NOT (CMAKE_MATCH_1 STREQUAL ${STR}))
#message (STATUS "condition is true")
set (IfElse 1)
continue ()


Loading…
Cancel
Save