From: Guido van Rossum Date: Fri, 12 Jun 1998 14:09:34 +0000 (+0000) Subject: Jonathan Giddy: X-Git-Tag: v1.5.2a1~481 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8f859a487c375983ec48102b108001a65d38e4b;p=thirdparty%2FPython%2Fcpython.git Jonathan Giddy: This second problem only shows up if LDLAST is not an empty string (such as with threads enabled on DEC Alphas). --- diff --git a/Tools/freeze/makemakefile.py b/Tools/freeze/makemakefile.py index 652a50344ffd..4d9913ee7c27 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)