summaryrefslogtreecommitdiff
path: root/m4/rename.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-01-14 15:28:45 +0000
committerJim Meyering <jim@meyering.net>2001-01-14 15:28:45 +0000
commitc0ba4297c56c18ae1859f7f5312dd5da191d0f13 (patch)
tree10aa35773b871aaa4bf2c5f03ef4706f94ff3dbc /m4/rename.m4
parentacc13fdc895fc060bb11388333933693a1d04ea4 (diff)
downloadcoreutils-c0ba4297c56c18ae1859f7f5312dd5da191d0f13.tar.xz
Use temporary directories named conftestdir{,2}, not
foo and bar. Create conftestdir/ in the script, not in the C code. Remove directories in the script, not in the C code.
Diffstat (limited to 'm4/rename.m4')
-rw-r--r--m4/rename.m438
1 files changed, 19 insertions, 19 deletions
diff --git a/m4/rename.m4 b/m4/rename.m4
index cba3cd242..95117d05f 100644
--- a/m4/rename.m4
+++ b/m4/rename.m4
@@ -12,29 +12,29 @@ AC_DEFUN(vb_FUNC_RENAME,
[
AC_CACHE_CHECK([whether rename is broken],
vb_cv_func_rename_trailing_slash_bug,
- [AC_TRY_RUN([
-# include <stdio.h>
-
- int
- main ()
- {
- if (mkdir ("foo") < 0)
- exit (1);
- if (rename ("foo/", "bar") < 0)
- { rmdir ("foo"); exit (1); }
- else
- { rmdir ("bar"); exit (0); }
- }
- ],
- vb_cv_func_rename_trailing_slash_bug=no,
- vb_cv_func_rename_trailing_slash_bug=yes,
- dnl When crosscompiling, assume rename is broken.
- vb_cv_func_rename_trailing_slash_bug=yes)
+ [
+ if mkdir conftestdir; then
+ vb_cv_func_rename_trailing_slash_bug=no
+ else
+ AC_TRY_RUN([
+# include <stdio.h>
+ int
+ main ()
+ {
+ exit (rename ("conftestdir/", "conftestdir2") ? 1 : 0);
+ }
+ ],
+ vb_cv_func_rename_trailing_slash_bug=no,
+ vb_cv_func_rename_trailing_slash_bug=yes,
+ dnl When crosscompiling, assume rename is broken.
+ vb_cv_func_rename_trailing_slash_bug=yes)
+ rm -rf conftestdir conftestdir2
+ fi
])
if test $vb_cv_func_rename_trailing_slash_bug = yes; then
AC_LIBOBJ(rename)
AC_DEFINE_UNQUOTED(RENAME_TRAILING_SLASH_BUG, 1,
[Define if rename does not work for source paths with a trailing slash,
- like the one from SunOS 4.1.1_U1. ])
+ like the one from SunOS 4.1.1_U1.])
fi
])