diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-20 16:07:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 16:07:21 (GMT) |
commit | 75e59a97f5d1fddb0c30ed9747b1b8cb84420a62 (patch) | |
tree | e1b32b3f0f8aaa038a4485a527157a9fac444608 /Makefile.pre.in | |
parent | c1c3493fb7a3af8efdc50175e592d29e8cb93886 (diff) | |
download | cpython-75e59a97f5d1fddb0c30ed9747b1b8cb84420a62.zip cpython-75e59a97f5d1fddb0c30ed9747b1b8cb84420a62.tar.gz cpython-75e59a97f5d1fddb0c30ed9747b1b8cb84420a62.tar.bz2 |
bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)
Add --with-wheel-pkg-dir=PATH option to the ./configure script. If
specified, the ensurepip module looks for setuptools and pip wheel
packages in this directory: if both are present, these wheel packages
are used instead of ensurepip bundled wheel packages.
Some Linux distribution packaging policies recommend against bundling
dependencies. For example, Fedora installs wheel packages in the
/usr/share/python-wheels/ directory and don't install the
ensurepip._bundled package.
ensurepip: Remove unused runpy import.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index fa0b9d8..ca6b518 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -146,6 +146,8 @@ CONFINCLUDEDIR= $(exec_prefix)/include PLATLIBDIR= @PLATLIBDIR@ SCRIPTDIR= $(prefix)/$(PLATLIBDIR) ABIFLAGS= @ABIFLAGS@ +# Variable used by ensurepip +WHEEL_PKG_DIR= @WHEEL_PKG_DIR@ # Detailed destination directories BINLIBDEST= @BINLIBDEST@ |