From edebc3a0fad7f1cc8baffc62804222d813852e79 Mon Sep 17 00:00:00 2001 From: Bin Yong Date: Mon, 25 Mar 2024 21:27:18 +0000 Subject: [PATCH] Update install_dependencies_debian.sh --- proxy/install_dependencies_debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/install_dependencies_debian.sh b/proxy/install_dependencies_debian.sh index e0748b8..e97fbe6 100755 --- a/proxy/install_dependencies_debian.sh +++ b/proxy/install_dependencies_debian.sh @@ -41,7 +41,7 @@ tar -xmf $openssl_src openssl_src=$(echo $openssl_src |sed "s/.......$//") cd $openssl_src ./Configure no-ssl2 no-ssl3 no-shared no-weak-ssl-ciphers --prefix="../$(uname -s)/$arch/${openssl_src}" -make +make -j ${HOOD_PROXY_BUILD_CONCURRENCY} make install # ---- begin code copied and modified from carla Simulator which is MIT License