diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-11-06 21:59:33 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-11-06 21:59:33 (GMT) |
commit | dc46175dc35d47df87e2955fec899cf471d3135f (patch) | |
tree | ab22a9d394c0e749efd0cd3377bf57226ba3a14d /Makefile.pre.in | |
parent | eb58f5d6cdc3d693eedc40229a5f161babf6920a (diff) | |
download | cpython-dc46175dc35d47df87e2955fec899cf471d3135f.zip cpython-dc46175dc35d47df87e2955fec899cf471d3135f.tar.gz cpython-dc46175dc35d47df87e2955fec899cf471d3135f.tar.bz2 |
Add --check-tkinter to setup.py. Install IDLE. Fixes #634078.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 8a47d6f..37df9a1 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -530,7 +530,7 @@ memtest: all platform $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS) # Install everything -install: altinstall bininstall maninstall +install: altinstall bininstall maninstall idleinstall # Install almost everything without disturbing previous versions altinstall: altbininstall libinstall inclinstall libainstall \ @@ -826,6 +826,10 @@ frameworkinstallunixtools: $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installunixtools \ srcdir=$(srcdir) builddir=. dstroot=$(PYTHONFRAMEWORKPREFIX)/../.. +# This installs IDLE +idleinstall: + SRCDIR=$(srcdir) ./$(BUILDPYTHON) $(srcdir)/Tools/idle/setup.py install --check-tkinter + # Build the toplevel Makefile Makefile.pre: Makefile.pre.in config.status CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status |