]> granicus.if.org Git - python/commitdiff
Merged revisions 83096 via svnmerge from
authorRonald Oussoren <ronaldoussoren@mac.com>
Fri, 23 Jul 2010 16:09:28 +0000 (16:09 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Fri, 23 Jul 2010 16:09:28 +0000 (16:09 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83096 | ronald.oussoren | 2010-07-23 17:05:35 +0100 (Fri, 23 Jul 2010) | 13 lines

  Ensure that sys.prefix can reliably be found
  on OSX. This fixes a small issue that was exposed
  by running test_subprocess through regrtest (and
  hence in a subdirectory).

  Without this patch running python.exe from the
  build tree will fail when these tree conditions
  are true:
  1) the CWD is not the root of build tree
  2) python.exe is found through $PATH
  3) the framework is not yet installed
........

Modules/getpath.c

index 3d45235f6cf1cd33d8dfed729adafef39519fbc3..bbcedf1562e8a9c3cf94afa46a3494017beb6c71 100644 (file)
@@ -552,7 +552,7 @@ calculate_path(void)
         if (!ismodule(argv0_path)) {
                 /* We are in the build directory so use the name of the
                    executable - we know that the absolute path is passed */
-                wcsncpy(argv0_path, prog, MAXPATHLEN);
+                wcsncpy(argv0_path, progpath, MAXPATHLEN);
         }
         else {
                 /* Use the location of the library as the progpath */