]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added LDLAST variable, substituted by configure script, for the final
authorGuido van Rossum <guido@python.org>
Tue, 28 Jan 1997 02:21:24 +0000 (02:21 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 28 Jan 1997 02:21:24 +0000 (02:21 +0000)
argument to the linker (required for DEC Alpha threads).

Modules/Makefile.pre.in

index 2d81409dda23968453489a6b1df382ba0c79bf47..2bf081a13f6a5c8b7059d257071277c069fbf812 100644 (file)
@@ -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: