Remove extra spaces in custom openSSL documentation. (GH-93568)
(cherry picked from commit
4875433682ffec2694647ac43f1b21f5ad73fd25)
Co-authored-by: Xiao Chen <chenxiao_7@163.com>
Co-authored-by: Xiao Chen <chenxiao_7@163.com>
.. 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)