From af0f6656de570eb1cb0717ab8d4ba3e8b7666e87 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 30 Jan 2001 08:24:13 +0000 Subject: [PATCH] s/conftestdata/conftest.data/ --- m4/utimes.m4 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/m4/utimes.m4 b/m4/utimes.m4 index f91e6885a..c1cdd96e3 100644 --- a/m4/utimes.m4 +++ b/m4/utimes.m4 @@ -5,7 +5,7 @@ dnl then do case-insensitive s/utime/utimes/. AC_DEFUN(jm_FUNC_UTIMES_NULL, [AC_CACHE_CHECK(whether utimes accepts a null argument, ac_cv_func_utimes_null, -[rm -f conftestdata; > conftestdata +[rm -f conftest.data; > conftest.data AC_TRY_RUN([ /* In case stat has been defined to rpl_stat, undef it here. */ #undef stat @@ -13,9 +13,11 @@ AC_TRY_RUN([ #include main() { struct stat s, t; -exit(!(stat ("conftestdata", &s) == 0 && utimes("conftestdata", (long *)0) == 0 -&& stat("conftestdata", &t) == 0 && t.st_mtime >= s.st_mtime -&& t.st_mtime - s.st_mtime < 120)); +exit(!(stat ("conftest.data", &s) == 0 + && utimes("conftest.data", (long *)0) == 0 + && stat("conftest.data", &t) == 0 + && t.st_mtime >= s.st_mtime + && t.st_mtime - s.st_mtime < 120)); }], ac_cv_func_utimes_null=yes, ac_cv_func_utimes_null=no, -- 2.11.0