Files
ports/math/py-h5py/patches/patch-setup_configure_py
2024-10-31 18:27:03 +00:00

17 lines
464 B
Plaintext

Avoid rebuild during make fake.
Index: setup_configure.py
--- setup_configure.py.orig
+++ setup_configure.py
@@ -198,8 +198,8 @@ class BuildConfig:
}
def changed(self):
- """Has the config changed since the last build?"""
- return self.as_dict() != load_stashed_config()
+ """Our build is always up to date"""
+ load_stashed_config()
def record_built(self):
"""Record config after a successful build"""