From: Larry Hastings Date: Sat, 23 Jun 2012 00:06:48 +0000 (-0700) Subject: Issue #14626: Fix buildbot issue on x86 Tiger 3.x. X-Git-Tag: v3.3.0b1~148 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67cbf7bff9173463c9bad620ebe534a24e245f45;p=python Issue #14626: Fix buildbot issue on x86 Tiger 3.x. --- 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))