]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Jonathan Giddy:
authorGuido van Rossum <guido@python.org>
Fri, 12 Jun 1998 14:09:34 +0000 (14:09 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 12 Jun 1998 14:09:34 +0000 (14:09 +0000)
This second problem only shows up if LDLAST is not an empty string (such
as with threads enabled on DEC Alphas).

Tools/freeze/makemakefile.py

index 652a50344ffd90fd442bcb3e506ef949f9648cd6..4d9913ee7c278624daaa2e1cf9ac593bf8e93be8 100644 (file)
@@ -24,6 +24,7 @@ def makemakefile(outfp, makevars, files, target):
             deps.append(dest)
 
     outfp.write("\n%s: %s\n" % (target, string.join(deps)))
-    outfp.write("\t$(CC) %s -o %s\n" % (string.join(files), target))
+    outfp.write("\t$(CC) %s -o %s $(LDLAST)\n" % 
+                (string.join(files), target))
 
     outfp.write("\nclean:\n\t-rm -f *.o %s\n" % target)