From 67cbf7bff9173463c9bad620ebe534a24e245f45 Mon Sep 17 00:00:00 2001 From: Larry Hastings Date: Fri, 22 Jun 2012 17:06:48 -0700 Subject: Issue #14626: Fix buildbot issue on x86 Tiger 3.x. --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 69c5e05..eb59513 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)) -- cgit v0.12