mirror of
https://github.com/python/cpython.git
synced 2025-08-21 17:25:34 +00:00
Fix for issue #7998: pythonw didn't work when --with-framework-name was
specified
This commit is contained in:
parent
4e62949217
commit
2a4ab81633
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ static char* get_python_path(void)
|
|||
if (end[1] == '.') {
|
||||
end++;
|
||||
}
|
||||
strcpy(end, "Resources/Python.app/Contents/MacOS/Python");
|
||||
strcpy(end, "Resources/Python.app/Contents/MacOS/" PYTHONFRAMEWORK);
|
||||
|
||||
return g_path;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue