We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b0ffa commit 1438b63Copy full SHA for 1438b63
bench-scripts/common_util.sh
@@ -118,14 +118,8 @@ function install_openssl {
118
119
git clone --single-branch -b ${BRANCH_NAME} --depth 1 \
120
"${OPENSSL_REPO}" . || exit 1
121
-
122
- if [[ "${DIRNAME}" = 'OpenSSL_1_1_1-stable' ]] ; then
123
- ./config --prefix="${INSTALL_ROOT}/${DIRNAME}" \
124
- --libdir="lib" || exit 1
125
- else
126
- ./Configure --prefix="${INSTALL_ROOT}/${DIRNAME}" \
127
128
- fi
+ ./config --prefix="${INSTALL_ROOT}/${DIRNAME}" \
+ --libdir="lib" || exit 1
129
make ${MAKE_OPTS} || exit 1
130
make ${MAKE_OPTS} install || exit 1
131
}
0 commit comments