|
|
@@ -4,9 +4,6 @@ get_filename_component(SCRIPT_PATH "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
|
if(NOT DEFINED CPACK_BINARY_GENERATORS)
|
|
|
set(CPACK_BINARY_GENERATORS "STGZ TGZ TZ")
|
|
|
endif()
|
|
|
-if(DEFINED EXTRA_COPY)
|
|
|
- set(HAS_EXTRA_COPY 1)
|
|
|
-endif()
|
|
|
if(NOT DEFINED CMAKE_RELEASE_DIRECTORY)
|
|
|
set(CMAKE_RELEASE_DIRECTORY "~/CMakeReleaseDirectory")
|
|
|
endif()
|
|
|
@@ -55,11 +52,11 @@ message("Creating CMake release ${CMAKE_CREATE_VERSION} on ${HOST} with parallel
|
|
|
macro(remote_command comment command)
|
|
|
message("${comment}")
|
|
|
if(${ARGC} GREATER 2)
|
|
|
- message("ssh ${HOST} ${EXTRA_HOP} ${command}")
|
|
|
- execute_process(COMMAND ssh ${HOST} ${EXTRA_HOP} ${command} RESULT_VARIABLE result INPUT_FILE ${ARGV2})
|
|
|
+ message("ssh ${HOST} ${command}")
|
|
|
+ execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result INPUT_FILE ${ARGV2})
|
|
|
else()
|
|
|
- message("ssh ${HOST} ${EXTRA_HOP} ${command}")
|
|
|
- execute_process(COMMAND ssh ${HOST} ${EXTRA_HOP} ${command} RESULT_VARIABLE result)
|
|
|
+ message("ssh ${HOST} ${command}")
|
|
|
+ execute_process(COMMAND ssh ${HOST} ${command} RESULT_VARIABLE result)
|
|
|
endif()
|
|
|
if(${result} GREATER 0)
|
|
|
message(FATAL_ERROR "Error running command: ${command}, return value = ${result}")
|