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/makesetup | |
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/makesetup')
-rwxr-xr-x | Modules/makesetup | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/makesetup b/Modules/makesetup index 0da9465..1feae60 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -28,9 +28,9 @@ # # Copying Makefile.pre to Makefile: # - insert an identifying comment at the start -# - replace @MODOBJS@ by the list of objects from Setup (except for +# - replace _MODOBJS_ by the list of objects from Setup (except for # Setup files after a -n option) -# - replace @MODLIBS@ by the list of libraries from Setup +# - replace _MODLIBS_ by the list of libraries from Setup # - for each object file mentioned in Setup, append a rule # '<file>.o: <file>.c; <build commands>' to the end of the Makefile # - for each module mentioned in Setup, append a rule @@ -227,8 +227,8 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | echo "1i\\" >$sedf str="# Generated automatically from $makepre by makesetup." echo "$str" >>$sedf - echo "s%@MODOBJS@%$OBJS%" >>$sedf - echo "s%@MODLIBS@%$LIBS%" >>$sedf + echo "s%_MODOBJS_%$OBJS%" >>$sedf + echo "s%_MODLIBS_%$LIBS%" >>$sedf echo "/Definitions added by makesetup/a$NL$NL$DEFS" >>$sedf sed -f $sedf $makepre >Makefile cat $rulesf >>Makefile |