]> granicus.if.org Git - python/commitdiff
Changed the occurrence of *shared* in the example so people won't
authorGuido van Rossum <guido@python.org>
Tue, 2 Dec 1997 16:46:39 +0000 (16:46 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 2 Dec 1997 16:46:39 +0000 (16:46 +0000)
accidentally uncomment it...

Modules/Setup.in

index e4e4a0f6f30373c3425aa7a7428eb474e211ce3f..b4fcd7814ec42c81a225a915833f6dcf76e56598 100644 (file)
 #
 # 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