When writing the Windows Makefile, don't forget to strip some filenames

of their output directory prefix.
This commit is contained in:
Guido van Rossum 1998-03-07 04:08:04 +00:00
parent 6663b22198
commit 31d53ed93c

View File

@ -287,8 +287,9 @@ def main():
try:
winmakemakefile.makemakefile(outfp,
locals(),
[frozenmain_c, frozen_c],
target)
[frozenmain_c,
os.path.basename(frozen_c)],
os.path.basename(target))
finally:
outfp.close()
return