[Python-checkins] cpython: Issue #14626: Fix buildbot issue on x86 Tiger 3.x.

larry.hastings python-checkins at python.org
Sat Jun 23 02:07:33 CEST 2012


http://hg.python.org/cpython/rev/e1e0eeb07398
changeset:   77599:e1e0eeb07398
user:        Larry Hastings <larry at hastings.org>
date:        Fri Jun 22 17:06:48 2012 -0700
summary:
  Issue #14626: Fix buildbot issue on x86 Tiger 3.x.

files:
  Modules/posixmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -3238,7 +3238,7 @@
     }
 #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))

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list