summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-12-02 16:46:39 (GMT)
committerGuido van Rossum <guido@python.org>1997-12-02 16:46:39 (GMT)
commit30e817ef320932282ee56865a4be79352113a9e0 (patch)
treee8c04026d18f9f97f3dbbac8299fa929a90ee3e5 /Modules
parent376467ada606ddc410d5c986c663426869dee64e (diff)
downloadcpython-30e817ef320932282ee56865a4be79352113a9e0.zip
cpython-30e817ef320932282ee56865a4be79352113a9e0.tar.gz
cpython-30e817ef320932282ee56865a4be79352113a9e0.tar.bz2
Changed the occurrence of *shared* in the example so people won't
accidentally uncomment it...
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Setup.in23
1 files changed, 10 insertions, 13 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in
index e4e4a0f..b4fcd78 100644
--- a/Modules/Setup.in
+++ b/Modules/Setup.in
@@ -32,19 +32,16 @@
#
# which defines a Make variable definition inserted into Makefile.in
#
-# Finally, if a line has the literal form
-#
-# *shared*
-#
-# (that is including the '*' and '*' !) then the following modules will
-# not be included in the config.c file, nor in the list of objects to be
-# added to the library archive, and their linker options won't be added
-# to the linker options, but rules to create their .o files and their
-# shared libraries will still be added to the Makefile, and their
-# names will be collected in the Make variable SHAREDMODS. This is
-# used to build modules as shared libraries. (They must be installed
-# using "make sharedinstall".) (For compatibility, *noconfig* has the
-# same effect as *shared*.)
+# Finally, if a line contains just the word "*shared*" (without the
+# quotes but with the stars), then the following modules will not be
+# included in the config.c file, nor in the list of objects to be
+# added to the library archive, and their linker options won't be
+# added to the linker options, but rules to create their .o files and
+# their shared libraries will still be added to the Makefile, and
+# their names will be collected in the Make variable SHAREDMODS. This
+# is used to build modules as shared libraries. (They must be
+# installed using "make sharedinstall".) (For compatibility,
+# *noconfig* has the same effect as *shared*.)
# NOTE: As a standard policy, as many modules as can be supported by a
# platform should be present. The distribution comes with all modules