From a91b36b236f1f0c0abe182b87573ab9bd18961f3 Mon Sep 17 00:00:00 2001 From: Joe Siewert Date: Thu, 11 May 2017 14:23:31 -0700 Subject: [PATCH] Fix --enable-shared sample command --- plugins/python-build/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/python-build/README.md b/plugins/python-build/README.md index 4ce63f19..60d0aa56 100644 --- a/plugins/python-build/README.md +++ b/plugins/python-build/README.md @@ -152,13 +152,13 @@ $ cat fix1.patch fix2.patch | pyenv install --patch 2.7.10 You can build CPython with `--enable-shared` to install a version with shared object. -If `--enabled-shared` was found in `PYTHON_CONFIGURE_OPTS` or `CONFIGURE_OPTS`, +If `--enable-shared` was found in `PYTHON_CONFIGURE_OPTS` or `CONFIGURE_OPTS`, `python-build` will automatically set `RPATH` to the pyenv's prefix directory. This means you don't have to set `LD_LIBRARY_PATH` or `DYLD_LIBRARY_PATH` for the version(s) installed with `--enable-shared`. ```sh -$ env PYTHON_CONFIGURE_OPTS="--enable-shared` pyenv install 2.7.9 +$ env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 2.7.9 ``` ### Checksum verification