]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarify that the Modules/ directory is in an unpacked source
authorFred Drake <fdrake@acm.org>
Thu, 29 Apr 1999 02:44:50 +0000 (02:44 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 29 Apr 1999 02:44:50 +0000 (02:44 +0000)
distribution; this is not clear for Windows users.

Doc/ext/ext.tex

index cda1b2d9b9190d6027913aa188eb6aa8707d41f3..3c7fae9975fc84f722a66bd950657a2983f742b3 100644 (file)
@@ -420,15 +420,15 @@ If you can't use dynamic loading, or if you want to make your module a
 permanent part of the Python interpreter, you will have to change the
 configuration setup and rebuild the interpreter.  Luckily, this is
 very simple: just place your file (\file{spammodule.c} for example) in
-the \file{Modules} directory, add a line to the file
-\file{Modules/Setup.local} describing your file:
+the \file{Modules/} directory of an unpacked source distribution, add
+a line to the file \file{Modules/Setup.local} describing your file:
 
 \begin{verbatim}
 spam spammodule.o
 \end{verbatim}
 
 and rebuild the interpreter by running \program{make} in the toplevel
-directory.  You can also run \program{make} in the \file{Modules}
+directory.  You can also run \program{make} in the \file{Modules/}
 subdirectory, but then you must first rebuild \file{Makefile}
 there by running `\program{make} Makefile'.  (This is necessary each
 time you change the \file{Setup} file.)