diff options
author | Guido van Rossum <guido@python.org> | 1994-09-12 15:35:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-12 15:35:36 (GMT) |
commit | f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f (patch) | |
tree | d6e3438901e7a6fa1ddfb835cda30961f18671bc /Modules/Setup.in | |
parent | 73737abeadbfd000fe21b6c2332558b2f5546c74 (diff) | |
download | cpython-f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f.zip cpython-f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f.tar.gz cpython-f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f.tar.bz2 |
* Modules/Setup.in: define PYTHONPATH using COREPYTHONPATH for
extensions; add -lm to math module definition
* Modules/Makefile.pre.in: remove *.so and so_locations on clobber
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index af7d235..ffbf64f 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -60,13 +60,14 @@ TESTPATH=:$(DESTLIB)/test # Path for machine- or system-dependent modules (and shared libraries) MACHDEPPATH=:$(DESTLIB)/$(MACHDEP) -PYTHONPATH=.:$(DESTLIB)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH) +COREPYTHONPATH=.:$(DESTLIB)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH) +PYTHONPATH=$(COREPYTHONPATH) # Modules that should always be present (non UNIX dependent) array arraymodule.c # array objects -math mathmodule.c # math library functions, e.g. sin() +math mathmodule.c -lm # math library functions, e.g. sin() parser parsermodule.c # raw interface to the Python parser posix posixmodule.c # posix (UNIX) system calls regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style |