NMake builder: fix incorrect variable reference (#34937)

This commit is contained in:
John W. Parent 2023-02-02 19:34:35 -05:00 committed by GitHub
parent 60624265f8
commit c49e2e5620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,7 +92,7 @@ def makefile_root(self):
This path is relative to the root of the extracted tarball,
not to the ``build_directory``. Defaults to the current directory.
"""
return self.stage.source_dir
return self.stage.source_path
@property
def nmakefile_name(self):