From f1ba008b1c1d5027d79ad6cca407a4c07bfbbe68 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 19 Nov 2001 10:00:00 +0000 Subject: [PATCH] (UTILS_FUNC_MKSTEMP): Don't bother with a temporary directory. Use "conftestXXXXXX" as the template. Suggestion from Paul Eggert. --- m4/mkstemp.m4 | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/m4/mkstemp.m4 b/m4/mkstemp.m4 index a7c12d889..7059687e8 100644 --- a/m4/mkstemp.m4 +++ b/m4/mkstemp.m4 @@ -13,11 +13,6 @@ AC_DEFUN([UTILS_FUNC_MKSTEMP], AC_CACHE_CHECK([for mkstemp limitations], utils_cv_func_mkstemp_limitations, [ - utils_tmpdir_mkstemp=mkst-$$$$ - # Arrange for deletion-upon-exception of this temporary directory. - ac_clean_files="$ac_clean_files $utils_tmpdir_mkstemp" - mkdir $utils_tmpdir_mkstemp - AC_TRY_RUN([ # include int main () @@ -25,7 +20,7 @@ AC_DEFUN([UTILS_FUNC_MKSTEMP], int i; for (i = 0; i < 30; i++) { - char template[] = "$utils_tmpdir_mkstemp/aXXXXXX"; + char template[] = "conftestXXXXXX"; int fd = mkstemp (template); if (fd == -1) exit (1); @@ -38,8 +33,6 @@ AC_DEFUN([UTILS_FUNC_MKSTEMP], utils_cv_func_mkstemp_limitations=yes, utils_cv_func_mkstemp_limitations=yes ) - - rm -rf $utils_tmpdir_mkstemp ] ) fi -- 2.11.0