From 278b249570fc247f986fe8ffb3d4de22fdf15365 Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 15 Jan 2002 22:13:42 +0000 Subject: [PATCH] test -e seems to be a little bit incompatible. Use -f instead. --- aclocal.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aclocal.m4 b/aclocal.m4 index 05aa83f..eee4251 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -56,7 +56,7 @@ int main (int argc, char*argv[]) ], OK=OK,,CROSSCOMPILE=1) if test "x${OK}" = "xOK";then - test -e config.tmp2 || OK= + test -f config.tmp2 || OK= fi if test "x${CROSSCOMPILE}" = "x1";then -- 1.7.10.4