2008-05-08 Keith Marshall Work around MSYS bug, which would cause `make check' to fail. * tests/atlocal.in (rm -rf 'tdir /'): Fails on MSYS; replace with... (rm -rf tdir*/): ...this, in all instances. --- autoconf-2.62/tests/atlocal.in 2008-04-06 00:04:48 +0100 +++ autoconf-2.62-patches/atlocal.in 2008-05-08 11:20:41 +0100 @@ -44,11 +44,11 @@ fi # Can we create directories with trailing whitespaces in their name? -rm -rf 'tdir /' +rm -rf tdir*/ mkdir 'tdir ' && touch 'tdir /tfile' 2>/dev/null if test -f 'tdir /tfile'; then func_sanitize_dir_name () { echo "$@"; } else func_sanitize_dir_name () { echo "$@" | sed 's/ *$//'; } fi -rm -rf 'tdir /' +rm -rf tdir*/