diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-07 00:56:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 00:56:51 (GMT) |
commit | bb21bc335b15e35735084d4369b9d17f3e481a51 (patch) | |
tree | ec02df3cacfac483cdd513f24001831ab3c18503 /Doc | |
parent | bc03bf42e70b111e4125bc6d08cd5943f8560c64 (diff) | |
download | cpython-bb21bc335b15e35735084d4369b9d17f3e481a51.zip cpython-bb21bc335b15e35735084d4369b9d17f3e481a51.tar.gz cpython-bb21bc335b15e35735084d4369b9d17f3e481a51.tar.bz2 |
[3.10] Remove extra spaces in custom openSSL documentation. (GH-93568) (#98008)
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>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/unix.rst | 20 |
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) |