diff options
author | Guido van Rossum <guido@python.org> | 1998-05-20 15:53:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-05-20 15:53:22 (GMT) |
commit | 750c8cee7eff436b08bc37e79bc69860c0f743e9 (patch) | |
tree | 3fb3a139327e21d5a7bbaf8ae805d17c4f10a3f0 /Misc | |
parent | a88c5f30c75021433d2a55704a9d6ca9676d09c6 (diff) | |
download | cpython-750c8cee7eff436b08bc37e79bc69860c0f743e9.zip cpython-750c8cee7eff436b08bc37e79bc69860c0f743e9.tar.gz cpython-750c8cee7eff436b08bc37e79bc69860c0f743e9.tar.bz2 |
Add LDLAST to the list of variables processed by the sed script.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/Makefile.pre.in b/Misc/Makefile.pre.in index cbb0b18..4b0df01 100644 --- a/Misc/Makefile.pre.in +++ b/Misc/Makefile.pre.in @@ -255,6 +255,7 @@ sedscript: $(MAKEFILE) -e '/^LINKCC=/s/^LINKCC=[ ]*\(.*\)/s%@LINKCC[@]%\1%/p' \ -e '/^OPT=/s/^OPT=[ ]*\(.*\)/s%@OPT[@]%\1%/p' \ -e '/^LDFLAGS=/s/^LDFLAGS=[ ]*\(.*\)/s%@LDFLAGS[@]%\1%/p' \ + -e '/^LDLAST=/s/^LDLAST=[ ]*\(.*\)/s%@LDLAST[@]%\1%/p' \ -e '/^DEFS=/s/^DEFS=[ ]*\(.*\)/s%@DEFS[@]%\1%/p' \ -e '/^LIBS=/s/^LIBS=[ ]*\(.*\)/s%@LIBS[@]%\1%/p' \ -e '/^LIBM=/s/^LIBM=[ ]*\(.*\)/s%@LIBM[@]%\1%/p' \ |