Skip to content

Commit 7bcdbbd

Browse files
authored
Merge pull request kivy#2314 from rambo/issue-2313
Print patched message to stderr
2 parents b3ac38a + d623382 commit 7bcdbbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipes/hostpython3/patches/pyconfig_detection.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ diff -Nru Python-3.8.2/Lib/site.py Python-3.8.2-new/Lib/site.py
77
elif key == 'home':
88
- sys._home = value
99
+ # this is breaking pyconfig.h path detection with venv
10-
+ print('Ignoring "sys._home = value" override')
10+
+ print('Ignoring "sys._home = value" override', file=sys.stderr)
1111

1212
sys.prefix = sys.exec_prefix = site_prefix
1313

0 commit comments

Comments
 (0)