From 0d51c139ca449b1f187eeec78bf865f91a927f56 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Thu, 1 May 2003 13:17:34 +0000 Subject: [PATCH] Use -f instead of -e since -e does not work in Solaris /bin/sh. Original commit message from CVS: Use -f instead of -e since -e does not work in Solaris /bin/sh. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 1dce7da..dc0d266 100755 --- a/autogen.sh +++ b/autogen.sh @@ -56,7 +56,7 @@ fi toplevel_check $srcfile -if test -e acinclude.m4; then rm acinclude.m4; fi +if test -f acinclude.m4; then rm acinclude.m4; fi tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS" tool_run "libtoolize" "--copy --force" -- 2.7.4