diff options
author | Benjamin Peterson <benjamin@python.org> | 2018-09-13 00:22:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-13 00:22:11 (GMT) |
commit | ed709d5699716bf7237856dc20aba321e2dfff6d (patch) | |
tree | 406228778dc294df0fa12de4e36c93ba54af758b /configure.ac | |
parent | c9a71dd223c4ad200a97aa320aef6bd3d45f8897 (diff) | |
download | cpython-ed709d5699716bf7237856dc20aba321e2dfff6d.zip cpython-ed709d5699716bf7237856dc20aba321e2dfff6d.tar.gz cpython-ed709d5699716bf7237856dc20aba321e2dfff6d.tar.bz2 |
bpo-34652: Remove lchmod from the big func checking block. (GH-9247)
A fix for 883702ebb8bbfa749ef0040d1b58d6222bf589ee.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index cf7328c..cc1bba4 100644 --- a/configure.ac +++ b/configure.ac @@ -3438,7 +3438,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getpwnam_r getpwuid_r getspnam getspent getsid getwd \ if_nameindex \ - initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mmap \ + initgroups kill killpg lchown lockf linkat lstat lutimes mmap \ memrchr mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \ posix_fallocate posix_fadvise posix_spawn pread preadv preadv2 \ @@ -3458,7 +3458,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ # links. Some libc implementations have a stub lchmod implementation that always # returns an error. if test "$MACHDEP" != linux; then - AC_CHECK_FUNC(lchmod) + AC_CHECK_FUNCS(lchmod) fi AC_CHECK_DECL(dirfd, |