Remove extra spaces in custom openSSL documentation. (#93568)

This commit is contained in:
Xiao Chen 2022-10-07 08:42:08 +08:00 committed by GitHub
parent 09de8d7aaf
commit 4875433682
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,16 +158,16 @@ Custom OpenSSL
.. code-block:: shell-session
$ curl -O https://www.openssl.org/source/openssl-VERSION.tar.gz
$ tar xzf openssl-VERSION
$ pushd openssl-VERSION
$ ./config \
--prefix=/usr/local/custom-openssl \
--libdir=lib \
--openssldir=/etc/ssl
$ make -j1 depend
$ make -j8
$ make install_sw
$ popd
$ tar xzf openssl-VERSION
$ pushd openssl-VERSION
$ ./config \
--prefix=/usr/local/custom-openssl \
--libdir=lib \
--openssldir=/etc/ssl
$ make -j1 depend
$ make -j8
$ make install_sw
$ popd
3. Build Python with custom OpenSSL
(see the configure `--with-openssl` and `--with-openssl-rpath` options)