diff options
| author | Larry Hastings <larry@hastings.org> | 2012-06-22 17:06:48 -0700 |
|---|---|---|
| committer | Larry Hastings <larry@hastings.org> | 2012-06-22 17:06:48 -0700 |
| commit | 67cbf7bff9173463c9bad620ebe534a24e245f45 (patch) | |
| tree | 7af7df4108cff833003fbc4f0fdbccdcd76fafde /Modules | |
| parent | 90867a5abab7fc866e4cb392c34242b49ea45258 (diff) | |
| download | cpython-git-67cbf7bff9173463c9bad620ebe534a24e245f45.tar.gz | |
Issue #14626: Fix buildbot issue on x86 Tiger 3.x.
Diffstat (limited to 'Modules')
| -rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 69c5e05853..eb595134da 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3238,7 +3238,7 @@ posix_link(PyObject *self, PyObject *args, PyObject *kwargs) } #else Py_BEGIN_ALLOW_THREADS -#ifndef HAVE_LINKAT +#ifdef HAVE_LINKAT if ((src_dir_fd != DEFAULT_DIR_FD) || (dst_dir_fd != DEFAULT_DIR_FD) || (!follow_symlinks)) |
