summaryrefslogtreecommitdiffstats
path: root/Doc/using
diff options
context:
space:
mode:
authorXiao Chen <chenxiao_7@163.com>2022-10-07 00:42:08 (GMT)
committerGitHub <noreply@github.com>2022-10-07 00:42:08 (GMT)
commit4875433682ffec2694647ac43f1b21f5ad73fd25 (patch)
tree5f46df372a64a4fc2d18b268db9a44547b611333 /Doc/using
parent09de8d7aafece264720afbca3052a63eee413b73 (diff)
downloadcpython-4875433682ffec2694647ac43f1b21f5ad73fd25.zip
cpython-4875433682ffec2694647ac43f1b21f5ad73fd25.tar.gz
cpython-4875433682ffec2694647ac43f1b21f5ad73fd25.tar.bz2
Remove extra spaces in custom openSSL documentation. (#93568)
Diffstat (limited to 'Doc/using')
-rw-r--r--Doc/using/unix.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst
index 3f9f136..061cfa5 100644
--- a/Doc/using/unix.rst
+++ b/Doc/using/unix.rst
@@ -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)