diff --git a/before_install_linux.sh b/before_install_linux.sh index 6e9a848f..9edabfc4 100755 --- a/before_install_linux.sh +++ b/before_install_linux.sh @@ -43,7 +43,7 @@ build_imagemagick() { cd "${build_dir}" ./configure --prefix=/usr "${options}" - make -j + make -j $(nproc) } if [ ! -d "${build_dir}" ]; then @@ -51,7 +51,7 @@ if [ ! -d "${build_dir}" ]; then fi cd "${build_dir}" -sudo make install -j +sudo make install -j $(nproc) cd "${project_dir}" sudo ldconfig