From c8f859a487c375983ec48102b108001a65d38e4b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 12 Jun 1998 14:09:34 +0000 Subject: [PATCH] Jonathan Giddy: 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/freeze/makemakefile.py b/Tools/freeze/makemakefile.py index 652a50344ff..4d9913ee7c2 100644 --- a/Tools/freeze/makemakefile.py +++ b/Tools/freeze/makemakefile.py @@ -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)