ports/math/py-h5py/patches/patch-setup_configure_py

17 lines
464 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Avoid rebuild during make fake.
Index: setup_configure.py
--- setup_configure.py.orig
+++ setup_configure.py
@@ -178,8 +178,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"""