Kaydet (Commit) c8f859a4 authored tarafından Guido van Rossum's avatar Guido van Rossum

Jonathan Giddy:

This second problem only shows up if LDLAST is not an empty string (such
as with threads enabled on DEC Alphas).
üst 590fc2c4
......@@ -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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment