misc: use pywinmake master

Change-Id: Ia987cd940ac7abf398358c21f7358d1c545ba932
This commit is contained in:
Andreas Traczyk
2023-11-02 17:03:42 -04:00
parent 346a9d1826
commit 8a42f969f5
3 changed files with 3 additions and 2 deletions

View File

@ -76,7 +76,7 @@ def build_from_dir(path, out_dir=None):
builder = MetaBuilder(base_dir=path)
# Build the package at the given path.
out_dir = os.path.join(path, "build") if out_dir is None else out_dir
pkg = Package(src_dir=path, build_dir=out_dir)
pkg = Package(src_dir=path, buildsrc_dir=out_dir)
builder.build(pkg)
def main():