[Python-checkins] [3.11] Remove extra spaces in custom openSSL documentation. (GH-93568) (#98007)

nanjekyejoannah webhook-mailer at python.org
Thu Oct 6 20:56:29 EDT 2022


https://github.com/python/cpython/commit/c9d0a7a6bc2f5d5521452790fb4885bb21deca15
commit: c9d0a7a6bc2f5d5521452790fb4885bb21deca15
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: nanjekyejoannah <33177550+nanjekyejoannah at users.noreply.github.com>
date: 2022-10-06T17:56:24-07:00
summary:

[3.11] Remove extra spaces in custom openSSL documentation. (GH-93568) (#98007)

Remove extra spaces in custom openSSL documentation. (GH-93568)
(cherry picked from commit 4875433682ffec2694647ac43f1b21f5ad73fd25)

Co-authored-by: Xiao Chen <chenxiao_7 at 163.com>

Co-authored-by: Xiao Chen <chenxiao_7 at 163.com>

files:
M Doc/using/unix.rst

diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst
index 3f9f1364c8ae..061cfa5be88f 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)



More information about the Python-checkins mailing list