diff options
author | Guido van Rossum <guido@python.org> | 2000-03-31 15:13:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-31 15:13:17 (GMT) |
commit | 5d35bf9853ade66deb8c76bafaffb01426414773 (patch) | |
tree | 18f5a2c1bd557f1092bef56816244cfc7610ed52 /Makefile.in | |
parent | 5fc4e20feec4b4a200f31f95518c54cbbf9ac26f (diff) | |
download | cpython-5d35bf9853ade66deb8c76bafaffb01426414773.zip cpython-5d35bf9853ade66deb8c76bafaffb01426414773.tar.gz cpython-5d35bf9853ade66deb8c76bafaffb01426414773.tar.bz2 |
Added distutils and distutils/command to LIBSUBDIRS. Noted by Andrew
Kuchling.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 59e082c..5554297 100644 --- a/Makefile.in +++ b/Makefile.in @@ -289,7 +289,8 @@ maninstall: # Install the library PLATDIR= plat-$(MACHDEP) MACHDEPS= $(PLATDIR) -LIBSUBDIRS= lib-old lib-tk test test/output encodings $(MACHDEPS) +LIBSUBDIRS= lib-old lib-tk test test/output encodings \ + distutils distutils/command $(MACHDEPS) libinstall: python $(srcdir)/Lib/$(PLATDIR) @for i in $(SCRIPTDIR) $(LIBDEST); \ do \ |