mirror of https://github.com/python/cpython.git
When writing the Windows Makefile, don't forget to strip some filenames
of their output directory prefix.
This commit is contained in:
parent
6663b22198
commit
31d53ed93c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue