]> source.dussan.org Git - tigervnc.git/commitdiff
Use CMAKE_COMMAND variable instead of hard coded cmake executable name for better...
authorBrian Hinz <bphinz@users.sourceforge.net>
Sat, 27 Apr 2013 20:14:50 +0000 (20:14 +0000)
committerBrian Hinz <bphinz@users.sourceforge.net>
Sat, 27 Apr 2013 20:14:50 +0000 (20:14 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5088 3789f03b-4d11-0410-bbf8-ca57d06f2519

cmake/Modules/CMakeMacroLibtoolFile.cmake

index 0cf7b9fbb0369c325ba5a201d1157b3e25f60ed5..0afb7a62dd34d7cadc7c1d24f587ae6000e964af 100644 (file)
@@ -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()