Skip to content

Commit def4cfc

Browse files
authored
Merge pull request #3151 from dscho/skip-dashed-built-ins-in-cmake-g4w
Fix CMake style
2 parents 1d7664e + 841eebd commit def4cfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/buildsystems/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ list(TRANSFORM git_perl_scripts PREPEND "${CMAKE_BINARY_DIR}/")
836836

837837
#install
838838
foreach(program ${PROGRAMS_BUILT})
839-
if(${program} STREQUAL git OR ${program} STREQUAL git-shell)
839+
if(program STREQUAL "git" OR program STREQUAL "git-shell")
840840
install(TARGETS ${program}
841841
RUNTIME DESTINATION bin)
842842
else()

0 commit comments

Comments
 (0)