# HG changeset patch # User Bruno Haible # Date 1269103699 -3600 # Node ID d30e3f8663c2bdb2775282443662b73e95710091 # Parent c898b2f6113ccc5ca42d659244b6c7a1a51215af Fix last commit. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-03-20 Bruno Haible + + * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit. + Reported by Jim Meyering. + 2010-03-20 Bruno Haible pipe: Set errno upon failure. diff --git a/m4/unlink.m4 b/m4/unlink.m4 --- a/m4/unlink.m4 +++ b/m4/unlink.m4 @@ -36,6 +36,11 @@ [gl_cv_func_unlink_parent_fails], [case "$host_os" in darwin*) + dnl Try to unlink a subdirectory of /tmp, because /tmp is usually on a + dnl HFS mount on MacOS X. Use a subdirectory, owned by the current + dnl user, because otherwise unlink() may fail due to permissions + dnl reasons, and because when running as root we don't want to risk + dnl destroying the entire /tmp. if { # Use the mktemp program if available. If not available, hide the error # message. @@ -52,14 +57,15 @@ (umask 077 && mkdir "$tmp") }; then mkdir "$tmp/subdir" - export tmp + GL_SUBDIR_FOR_UNLINK="$tmp/subdir" + export GL_SUBDIR_FOR_UNLINK AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include int main () { - if (chdir (getenv ("tmp")) != 0) + if (chdir (getenv ("GL_SUBDIR_FOR_UNLINK")) != 0) return 1; return unlink ("..") == 0; } @@ -67,8 +73,8 @@ [gl_cv_func_unlink_parent_fails=yes], [gl_cv_func_unlink_parent_fails=no], [gl_cv_func_unlink_parent_fails="guessing no"]) + unset GL_SUBDIR_FOR_UNLINK rm -rf "$tmp" - unset tmp else gl_cv_func_unlink_parent_fails="guessing no" fi