summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-11-21 20:29:57 +0000
committerMartin v. Löwis <martin@v.loewis.de>2002-11-21 20:29:57 +0000
commit8f8d1d21406f4fed13a817f295a43208ff0bd645 (patch)
treeffe47dd31f37ee04c4c351bd3f91f4217282b456
parentdffda2eaf9e219e417fe1d584e28ede378bf0a03 (diff)
downloadcpython-git-8f8d1d21406f4fed13a817f295a43208ff0bd645.tar.gz
Patch #642020: Pass down prefix, BINDIR, and DESTSHARED to idleinstall.
-rw-r--r--Makefile.pre.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 8e0badcf44..251b8203f6 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -828,7 +828,12 @@ frameworkinstallunixtools:
# This installs IDLE
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
Makefile.pre: Makefile.pre.in config.status