diff options
author | Guido van Rossum <guido@python.org> | 2000-02-28 19:52:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-28 19:52:53 (GMT) |
commit | 048e6103f29d0720d52a64dcecdebdec9eb7c780 (patch) | |
tree | 938f1f5f84a7597abfbf24f49edd562c53aae649 /Makefile.in | |
parent | 01b3aa4d08085083c5ecc622ade790441083420f (diff) | |
download | cpython-048e6103f29d0720d52a64dcecdebdec9eb7c780.zip cpython-048e6103f29d0720d52a64dcecdebdec9eb7c780.tar.gz cpython-048e6103f29d0720d52a64dcecdebdec9eb7c780.tar.bz2 |
Drop the support level for stdwin a notch -- the contents of
lib-stdwin is no longer installed.
Increase the support level for other obsolete modules a bit: install
lib-old by default. It still isn't in the path by default, but at
least it's easier to add to your $PYTHONPATH this way. (This makes
sense because in 1.6 we're much more aggressive with declaring modules
obsolete.)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index c466162..3a01763 100644 --- a/Makefile.in +++ b/Makefile.in @@ -289,7 +289,7 @@ maninstall: # Install the library PLATDIR= plat-$(MACHDEP) MACHDEPS= $(PLATDIR) -LIBSUBDIRS= lib-stdwin lib-tk test test/output $(MACHDEPS) +LIBSUBDIRS= lib-old lib-tk test test/output $(MACHDEPS) libinstall: python $(srcdir)/Lib/$(PLATDIR) @for i in $(SCRIPTDIR) $(LIBDEST); \ do \ |