summaryrefslogtreecommitdiff
path: root/macros/gnome-pilot.m4
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>1999-11-09 17:47:42 +0000
committerEskil Heyn Olsen <eskil@src.gnome.org>1999-11-09 17:47:42 +0000
commitc90391575a9e4825579f79d274e7d4a70bde5e06 (patch)
tree76dd771368937ade546212b39264ed526cf6c825 /macros/gnome-pilot.m4
parent7e03feb8801a140f8c13f427a9bfc536f624661f (diff)
downloadshared-mime-info-c90391575a9e4825579f79d274e7d4a70bde5e06.tar.gz
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=992
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 e0e6f293..e8a52632 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/.")