From 9e0675ceccbbbf7410ccc70c228878568d59a615 Mon Sep 17 00:00:00 2001 From: Kyler Date: Sat, 29 Nov 2025 13:34:34 -0700 Subject: [PATCH] Updated build.py to always recompile meta.c --- SLS_C/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SLS_C/build.py b/SLS_C/build.py index 02786f1..4ee04c0 100644 --- a/SLS_C/build.py +++ b/SLS_C/build.py @@ -84,6 +84,8 @@ def run(cmd): def is_up_to_date(src, obj, dep): + if "meta" in [src.stem, obj.stem, dep.stem]: + return False if not obj.exists(): return False if dep.exists() and dep.stat().st_mtime > obj.stat().st_mtime: