mirror of https://github.com/python/cpython
Patch #642020: Pass down prefix, BINDIR, and DESTSHARED to idleinstall.
This commit is contained in:
parent
dffda2eaf9
commit
8f8d1d2140
|
@ -828,7 +828,12 @@ frameworkinstallunixtools:
|
||||||
|
|
||||||
# This installs IDLE
|
# This installs IDLE
|
||||||
idleinstall:
|
idleinstall:
|
||||||
SRCDIR=$(srcdir) ./$(BUILDPYTHON) $(srcdir)/Tools/idle/setup.py install --check-tkinter
|
SRCDIR=$(srcdir) \
|
||||||
|
./$(BUILDPYTHON) $(srcdir)/Tools/idle/setup.py install \
|
||||||
|
--check-tkinter \
|
||||||
|
--prefix=$(prefix) \
|
||||||
|
--install-scripts=$(BINDIR) \
|
||||||
|
--install-platlib=$(DESTSHARED)
|
||||||
|
|
||||||
# Build the toplevel Makefile
|
# Build the toplevel Makefile
|
||||||
Makefile.pre: Makefile.pre.in config.status
|
Makefile.pre: Makefile.pre.in config.status
|
||||||
|
|
Loading…
Reference in New Issue