diff options
author | Guido van Rossum <guido@python.org> | 2000-04-24 14:57:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-04-24 14:57:21 (GMT) |
commit | 0f7bd3ce9fd4e78d4b1db60b68dff9442dc1b1ec (patch) | |
tree | 0290475fea92ec564025e3146d5e798e7e44bf56 | |
parent | e56b4cf804c4672f223766b05c91cf420be03fb8 (diff) | |
download | cpython-0f7bd3ce9fd4e78d4b1db60b68dff9442dc1b1ec.zip cpython-0f7bd3ce9fd4e78d4b1db60b68dff9442dc1b1ec.tar.gz cpython-0f7bd3ce9fd4e78d4b1db60b68dff9442dc1b1ec.tar.bz2 |
Added site-packages. (Sorry, forgot who submitted this patch.)
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 5554297..1b71792 100644 --- a/Makefile.in +++ b/Makefile.in @@ -289,7 +289,7 @@ maninstall: # Install the library PLATDIR= plat-$(MACHDEP) MACHDEPS= $(PLATDIR) -LIBSUBDIRS= lib-old lib-tk test test/output encodings \ +LIBSUBDIRS= lib-old lib-tk site-packages test test/output encodings \ distutils distutils/command $(MACHDEPS) libinstall: python $(srcdir)/Lib/$(PLATDIR) @for i in $(SCRIPTDIR) $(LIBDEST); \ |