summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-09-25 14:49:15 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-09-25 14:49:15 (GMT)
commitd4fa80753245e2314e5a245d632d897b4e61d2f5 (patch)
tree48530c17e65b1395789722e9124713ae04feff19
parent39cb54b375166439dc6973e5a73bd5a486c5948b (diff)
downloadcpython-d4fa80753245e2314e5a245d632d897b4e61d2f5.zip
cpython-d4fa80753245e2314e5a245d632d897b4e61d2f5.tar.gz
cpython-d4fa80753245e2314e5a245d632d897b4e61d2f5.tar.bz2
Typo: HAVE_SYNC -> HAVE_FSYNC
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index d3760af..7b8e62a 100644
--- a/configure.in
+++ b/configure.in
@@ -2105,7 +2105,7 @@ AC_TRY_COMPILE([#include <unistd.h>], void *x=fchdir,
)
AC_MSG_CHECKING(for fsync)
AC_TRY_COMPILE([#include <unistd.h>], void *x=fsync,
- AC_DEFINE(HAVE_SYNC, 1, Define if you have the 'fsync' function.)
+ AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
AC_MSG_RESULT(yes),
AC_MSG_RESULT(no)
)