diff --git a/jenkins/create_build.sh b/jenkins/create_build.sh index 8e2cae4..aa79fe5 100755 --- a/jenkins/create_build.sh +++ b/jenkins/create_build.sh @@ -45,9 +45,9 @@ function compile_native() { [[ ! -z "$tearoot_cmake_module" ]] && _arguments="${_arguments} -DCMAKE_MODULE_PATH=\"$tearoot_cmake_module\"" [[ ! -z "$tearoot_cmake_config" ]] && _arguments="${_arguments} -DCMAKE_PLATFORM_INCLUDE=\"$tearoot_cmake_config\"" [[ ! -z "$traroot_library" ]] && _arguments="${_arguments} -DLIBRARY_PATH=\"$traroot_library\"" - echo "Native arguments: ${_arguments}" + echo "Native arguments: ${_arguments:1}" - cmake ../../ -DCMAKE_BUILD_TYPE=RelWithDebInfo ${_arguments} + cmake ../../ -DCMAKE_BUILD_TYPE=RelWithDebInfo ${_arguments:1} check_err_exit ${project_name} "Failed create build targets!" cmake --build `pwd` --target teaclient_connection -- -j 12