diff options
author | Guido van Rossum <guido@python.org> | 1996-07-31 17:49:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-31 17:49:01 (GMT) |
commit | 0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff (patch) | |
tree | 765fa56796fa6725b247ea951fae3d129f38451c /Modules/Setup.in | |
parent | 276de58927ea8986ba6ead3e64e0689bbbeb5ebc (diff) | |
download | cpython-0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff.zip cpython-0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff.tar.gz cpython-0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff.tar.bz2 |
DESTLIB and MACHDESTLIB are now derived from variables set by the Makefile.
Clarified some comments.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 19aa44c..daa1cc7 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -50,17 +50,19 @@ # Edit the definitions below to indicate which options you are using. # Don't add any whitespace or comments! -# Don't edit this (usually) -DESTLIB=$(prefix)/lib/python$(VERSION) -MACHDESTLIB=$(exec_prefix)/lib/python$(VERSION) +# Directories where library files get installed. +# DESTLIB is for Python modules; MACHDESTLIB for shared libraries. +DESTLIB=$(LIBDEST) +MACHDESTLIB=$(BINLIBDEST) -# Site specific path insertions -- should begin with : if non-empty -SITEPATH= - -# Standard path -- don't edit +# Standard path -- don't edit. +# No leading colon since this is the first entry DESTPATH=$(DESTLIB) -# Standard enabled (tests are always available) +# Site specific path components -- should begin with : if non-empty +SITEPATH= + +# Standard path components for test modules TESTPATH=:$(DESTLIB)/test # Path components for machine- or system-dependent modules and shared libraries |