Skip to content

Commit

Permalink
fix accidental deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored May 15, 2024
1 parent bb82d38 commit e136c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/utils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()
Expand Down

0 comments on commit e136c9f

Please sign in to comment.