diff options
author | Guido van Rossum <guido@python.org> | 2003-02-19 15:25:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-19 15:25:10 (GMT) |
commit | 162e38c6a312aa3e9c353419301087a4620c513c (patch) | |
tree | 7cbea919a90b99c00446bfa35905821b8dc7ee44 /configure.in | |
parent | 80be59b275dfd62545c69ca377bae02c02648839 (diff) | |
download | cpython-162e38c6a312aa3e9c353419301087a4620c513c.zip cpython-162e38c6a312aa3e9c353419301087a4620c513c.tar.gz cpython-162e38c6a312aa3e9c353419301087a4620c513c.tar.bz2 |
- sys.path[0] (the directory from which the script is loaded) is now
turned into an absolute pathname, unless it is the empty string.
(SF patch #664376, by Skip Montanaro.)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8fce1cd..0b893a5 100644 --- a/configure.in +++ b/configure.in @@ -1843,7 +1843,7 @@ AC_CHECK_FUNCS(alarm chown clock confstr ctermid execv \ getpriority getpwent getwd \ hstrerror inet_aton inet_pton kill killpg lchown lstat mkfifo mknod mktime \ mremap nice pathconf pause plock poll pthread_init \ - putenv readlink \ + putenv readlink realpath \ select setegid seteuid setgid \ setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \ sigaction siginterrupt sigrelse strftime strptime \ |