Hello,
I committed Eric's patch, but I added a line of comment to the AT_INIT
code, see below.
Thank you, Eric.
Have a nice day,
Stepan
--- lib/autotest/general.m4 27 Mar 2006 17:42:18 -0000 1.199
+++ lib/autotest/general.m4 1 Apr 2006 16:09:13 -0000 1.200
@@ -699,7 +699,8 @@
find $at_group_dir -type d ! -perm -700 -exec chmod u+rwx \{\} \;
rm -fr $at_group_dir
fi
- mkdir $at_group_dir ||
+ # Be tolerant if the above `rm' was not able to remove the directory.
+ AS_MKDIR_P([$at_group_dir]) ||
AS_ERROR([cannot create $at_group_dir])
cd $at_group_dir
;;