summaryrefslogtreecommitdiffstats
path: root/Modules/Makefile.pre.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-01-28 02:21:24 (GMT)
committerGuido van Rossum <guido@python.org>1997-01-28 02:21:24 (GMT)
commitbd5f193ee5540d17e0f5501791dbe4e12f0fdcf0 (patch)
tree4fdf47a67f9dbd7463eb603ceeb18ee68c62e667 /Modules/Makefile.pre.in
parent16e93a8d594ac2f464748acff49a9705a7da35e6 (diff)
downloadcpython-bd5f193ee5540d17e0f5501791dbe4e12f0fdcf0.zip
cpython-bd5f193ee5540d17e0f5501791dbe4e12f0fdcf0.tar.gz
cpython-bd5f193ee5540d17e0f5501791dbe4e12f0fdcf0.tar.bz2
Added LDLAST variable, substituted by configure script, for the final
argument to the linker (required for DEC Alpha threads).
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r--Modules/Makefile.pre.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in
index 2d81409..2bf081a 100644
--- a/Modules/Makefile.pre.in
+++ b/Modules/Makefile.pre.in
@@ -25,6 +25,7 @@ AR= @AR@
OPT= @OPT@
LDFLAGS= @LDFLAGS@
+LDLAST= @LDLAST@
DEFS= @DEFS@
LIBS= @LIBS@
@@ -126,7 +127,7 @@ $(LIB): $& $(OBJS) Makefile
$(CC) -c $(CFLAGS) -DBUILD=`cat buildno` $(srcdir)/getbuildinfo.c
$(AR) r $(LIB) getbuildinfo.o
$(LINKCC) $(LDFLAGS) $(OPT) $(LINKFORSHARED) $(ADDOBJS) \
- $(MYLIBS) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python
+ $(MYLIBS) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python $(LDLAST)
mv python ../python
buildno: