diff options
author | Guido van Rossum <guido@python.org> | 1995-01-02 19:30:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-02 19:30:30 (GMT) |
commit | 3bbc62e9c25d4c006cd21d6b1314ccf0ba211382 (patch) | |
tree | 0b1a6d87c3bd250a62235f9df6ed9fffddbbabae /Modules/Makefile.pre.in | |
parent | 437a0e60baa6eabc2c853bee7ce1543481db8ca7 (diff) | |
download | cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.zip cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.tar.gz cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.tar.bz2 |
Another bulky set of minor changes.
Note addition of gethostbyaddr() and improved repr() for sockets,
renaming of md5.md5() to md5.new(), and fixing of leaks in threads.
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r-- | Modules/Makefile.pre.in | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index ae6e8de..5662ea5 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -8,8 +8,8 @@ # === Variables set by makesetup === -MODOBJS= @MODOBJS@ -MODLIBS= @MODLIBS@ +MODOBJS= _MODOBJS_ +MODLIBS= _MODLIBS_ # === Definitions added by makesetup === @@ -30,15 +30,18 @@ LIBC= @LIBC@ # Machine-dependent subdirectories MACHDEP= @MACHDEP@ -# Install prefix, may be changed by configure -prefix= /usr/local +# Install prefix for architecture-independent files +prefix= @prefix@ + +# Install prefix for architecture-dependent files +exec_prefix= @exec_prefix@ # Symbols used for using shared libraries SO= @SO@ LDSHARED= @LDSHARED@ CCSHARED= @CCSHARED@ LINKFORSHARED= @LINKFORSHARED@ -DESTSHARED= $(prefix)/lib/python/$(MACHDEP) +DESTSHARED= $(exec_prefix)/lib/python/$(MACHDEP) # === Variables that are customizable by hand === @@ -150,6 +153,7 @@ yuvconvert.o: yuvconvert.c # Rules to build and install all shared modules sharedmods: $(SHAREDMODS) sharedinstall: $(SHAREDMODS) - for i in $(SHAREDMODS); do mv $$i $(DESTSHARED)/$$i; done + for i in dummy $(SHAREDMODS); do \ + if test -f $$i; then mv $$i $(DESTSHARED)/$$i; fi; done # Stuff is appended here by makesetup and make depend |