From f12159bfb9ee9e3ff3c85b191c8366e90d49eda8 Mon Sep 17 00:00:00 2001 From: Astronand Date: Mon, 9 Mar 2026 11:31:31 -0400 Subject: [PATCH] fixed build script --- build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index c110788..d3b0765 100644 --- a/build.py +++ b/build.py @@ -90,9 +90,10 @@ def process_root(src_root: Path, out_root: Path, minify: bool, micro: bool): continue rel = src.relative_to(pkg_dir) - if rel=="$PKGCONFIG.ini": - continue + if rel.name=="$PKGCONFIG.ini": + continue + dst = out_root / rel dst.parent.mkdir(parents=True, exist_ok=True)