Skip to content

Commit

Permalink
Single thread compile in install script (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
eidenyoshida authored Apr 27, 2020
1 parent a1495f9 commit 2694e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ if [[ "${install_dependencies}" == true ]]; then
printf "\033[32mBuilding \033[33mgoogletest\033[32m from source; installing into \033[33m/usr/local\033[0m\n"
mkdir -p ${build_dir}/deps && cd ${build_dir}/deps
${cmake_executable} ../../deps
make -j$(nproc)
make
elevate_if_not_root make install
popd
fi
Expand Down Expand Up @@ -388,7 +388,7 @@ pushd .
fi
check_exit_code

make -j$(nproc) install
make install
check_exit_code

# #################################################
Expand Down

0 comments on commit 2694e68

Please sign in to comment.