Skip to content

Commit

Permalink
the escape quote must be recursively escaped since it gets re-parsed …
Browse files Browse the repository at this point in the history
…later.
  • Loading branch information
Walter Gray committed Aug 11, 2016
1 parent 2bf5bdc commit 4690ba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions standard/CombinedInstaller.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ function(combined_installer)
list(
APPEND
CPACK_INSTALL_COMMANDS
"${CMAKE_COMMAND} --build \"${CMAKE_BINARY_DIR}\" --config ${ONE_CONFIG}"
"${CMAKE_COMMAND} --build \\\"${CMAKE_BINARY_DIR}\\\" --config ${ONE_CONFIG}"
"${CMAKE_COMMAND} -DBUILD_TYPE=${ONE_CONFIG} -P \\\"${SELF}/cmake_package.cmake\\\""
)
endforeach()
else()
set(CPACK_INSTALL_COMMANDS
"${CMAKE_COMMAND} --build \"${CMAKE_BINARY_DIR}\""
"${CMAKE_COMMAND} --build \\\"${CMAKE_BINARY_DIR}\\\""
"${CMAKE_COMMAND} -P \\\"${SELF}/cmake_package.cmake\\\""
)
endif()
Expand Down

0 comments on commit 4690ba4

Please sign in to comment.