aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-pilot.m4
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>1999-11-10 01:47:42 +0800
committerEskil Heyn Olsen <eskil@src.gnome.org>1999-11-10 01:47:42 +0800
commitc0795aaa97852793b0dae4eb7e4866d088fada76 (patch)
tree3657bf2734437165271ecd5a5e8b29efe341b032 /macros/gnome-pilot.m4
parent0b246c95e9a1cc61b73cd0e1cead30af8356bcf8 (diff)
downloadgsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.tar
gsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.tar.gz
gsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.tar.bz2
gsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.tar.lz
gsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.tar.xz
gsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.tar.zst
gsoc2013-evolution-c0795aaa97852793b0dae4eb7e4866d088fada76.zip
uses test -r instead of test -e, was reported as a portability bug wrt
* gnome-pilot.m4: uses test -r instead of test -e, was reported as a portability bug wrt solaris. svn path=/trunk/; revision=1373
Diffstat (limited to 'macros/gnome-pilot.m4')
-rw-r--r--macros/gnome-pilot.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4
index e0e6f293cd..e8a52632e3 100644
--- a/macros/gnome-pilot.m4
+++ b/macros/gnome-pilot.m4
@@ -28,7 +28,7 @@ AC_DEFUN([PILOT_LINK_HOOK],[
PISOCK_LIBDIR="-L$withval/lib"
PISOCK_LIBS="-lpisock"
AC_MSG_CHECKING("for existance of $withval/lib/libpisock.so")
- if test -e $withval/lib/libpisock.so; then
+ if test -r $withval/lib/libpisock.so; then
AC_MSG_RESULT("yes")
else
AC_MSG_ERROR("Unable to find libpisock. Try ftp://ryeham.ee.ryerson.ca/pub/PalmOS/.")