3 # Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
4 # This file is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
8 # On some systems, mkdir ("foo/", 0700) fails because of the trailing slash.
9 # On such systems, arrange to use a wrapper function that removes any
11 AC_DEFUN([gl_FUNC_MKDIR_TRAILING_SLASH],
13 AC_CACHE_CHECK([whether mkdir fails due to a trailing slash],
14 gl_cv_func_mkdir_trailing_slash_bug,
16 # Arrange for deletion of the temporary directory this test might create.
17 ac_clean_files="$ac_clean_files confdir-slash"
19 # include <sys/types.h>
20 # include <sys/stat.h>
24 rmdir ("confdir-slash");
25 exit (mkdir ("confdir-slash/", 0700));
28 gl_cv_func_mkdir_trailing_slash_bug=no,
29 gl_cv_func_mkdir_trailing_slash_bug=yes,
30 gl_cv_func_mkdir_trailing_slash_bug=yes
35 if test $gl_cv_func_mkdir_trailing_slash_bug = yes; then
37 AC_DEFINE(mkdir, rpl_mkdir,
38 [Define to rpl_mkdir if the replacement function should be used.])
43 # Prerequisites of lib/mkdir.c.
44 AC_DEFUN([gl_PREREQ_MKDIR], [:])