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
1 changed files with 3 additions and 2 deletions

View File

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