From: Brian Hinz Date: Sat, 27 Apr 2013 20:14:50 +0000 (+0000) Subject: Use CMAKE_COMMAND variable instead of hard coded cmake executable name for better... X-Git-Tag: v1.3.90~116 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=491b9505c226801ff7e71db6fd42ed8e32f7768f;p=tigervnc.git Use CMAKE_COMMAND variable instead of hard coded cmake executable name for better portability. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5088 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/cmake/Modules/CMakeMacroLibtoolFile.cmake b/cmake/Modules/CMakeMacroLibtoolFile.cmake index 0cf7b9fb..0afb7a62 100644 --- a/cmake/Modules/CMakeMacroLibtoolFile.cmake +++ b/cmake/Modules/CMakeMacroLibtoolFile.cmake @@ -101,8 +101,8 @@ macro(libtool_create_control_file _target) # Add custom command to symlink the static library so that autotools finds # the library in .libs. These are executed after the specified target build. add_custom_command(TARGET ${_target} POST_BUILD COMMAND - cmake -E make_directory "${CMAKE_CURRENT_BINARY_DIR}/.libs") + "${CMAKE_COMMAND}" -E make_directory "${CMAKE_CURRENT_BINARY_DIR}/.libs") add_custom_command(TARGET ${_target} POST_BUILD COMMAND - cmake -E create_symlink ${_target_location} "${CMAKE_CURRENT_BINARY_DIR}/.libs/${_lname}${CMAKE_STATIC_LIBRARY_SUFFIX}") + "${CMAKE_COMMAND}" -E create_symlink ${_target_location} "${CMAKE_CURRENT_BINARY_DIR}/.libs/${_lname}${CMAKE_STATIC_LIBRARY_SUFFIX}") endmacro()