commit | 2a4ab816332a67150fcc8ece255fb1ee8e66af83 | [log] [tgz] |
---|---|---|
author | Ronald Oussoren <ronaldoussoren@mac.com> | Sun Mar 07 09:04:06 2010 +0000 |
committer | Ronald Oussoren <ronaldoussoren@mac.com> | Sun Mar 07 09:04:06 2010 +0000 |
tree | da01c133e0e6fcb2cc7bb907d5d444439b348f10 | |
parent | 4e6294921726bd2c4197c012fd5cbc3905ba7560 [diff] [blame] |
Fix for issue #7998: pythonw didn't work when --with-framework-name was specified
diff --git a/Mac/Tools/pythonw.c b/Mac/Tools/pythonw.c index 991a738..448e324 100644 --- a/Mac/Tools/pythonw.c +++ b/Mac/Tools/pythonw.c
@@ -79,7 +79,7 @@ if (end[1] == '.') { end++; } - strcpy(end, "Resources/Python.app/Contents/MacOS/Python"); + strcpy(end, "Resources/Python.app/Contents/MacOS/" PYTHONFRAMEWORK); return g_path; }