Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #3151 from dscho/skip-dashed-built-ins-in-cmake-g4w
Fix CMake style
  • Loading branch information
dscho committed Mar 29, 2021
2 parents 1d7664e + 841eebd commit def4cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/buildsystems/CMakeLists.txt
Expand Up @@ -836,7 +836,7 @@ list(TRANSFORM git_perl_scripts PREPEND "${CMAKE_BINARY_DIR}/")

#install
foreach(program ${PROGRAMS_BUILT})
if(${program} STREQUAL git OR ${program} STREQUAL git-shell)
if(program STREQUAL "git" OR program STREQUAL "git-shell")
install(TARGETS ${program}
RUNTIME DESTINATION bin)
else()
Expand Down

0 comments on commit def4cfc

Please sign in to comment.