diff options
author | Fred Drake <fdrake@acm.org> | 2000-06-30 15:46:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-06-30 15:46:08 (GMT) |
commit | 4247ba63bdd658c5d7a37e3e47bce4e8ee912367 (patch) | |
tree | 8a412710e23dea54abb3cb1a639a0cd45594b83e | |
parent | aad1d4b8f240d1fd0dbb99e25dfab446eb61c6ad (diff) | |
download | cpython-4247ba63bdd658c5d7a37e3e47bce4e8ee912367.zip cpython-4247ba63bdd658c5d7a37e3e47bce4e8ee912367.tar.gz cpython-4247ba63bdd658c5d7a37e3e47bce4e8ee912367.tar.bz2 |
Martin von Löwis <loewis@informatik.hu-berlin.de>:
Do not forget to install the xml packages!
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index ac52a30..41dbacb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -289,8 +289,9 @@ maninstall: # Install the library PLATDIR= plat-$(MACHDEP) MACHDEPS= $(PLATDIR) +XMLLIBSUBDIRS= xml xml/dom xml/parser xml/sax LIBSUBDIRS= lib-old lib-tk site-packages test test/output encodings \ - distutils distutils/command curses $(MACHDEPS) + distutils distutils/command $(XMLLIBSUBDIRS) curses $(MACHDEPS) libinstall: python $(srcdir)/Lib/$(PLATDIR) @for i in $(SCRIPTDIR) $(LIBDEST); \ do \ |