mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
Jonathan Giddy:
This second problem only shows up if LDLAST is not an empty string (such as with threads enabled on DEC Alphas).
This commit is contained in:
parent
590fc2c4fa
commit
c8f859a487
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user