blob: cf7faf4edc3b6bda09c2952199ac18897e9ee50a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/numpy/distutils/system_info.py
+++ b/numpy/distutils/system_info.py
@@ -403,7 +403,7 @@ def get_standard_file(fname):
pass
else:
user_file = os.path.join(f, fname)
- if os.path.isfile(user_file):
+ if "_PYTHON_HOST_PLATFORM" not in os.environ and os.path.isfile(user_file):
filenames.append(user_file)
# Local file
|