From: Eskil Heyn Olsen Date: Tue, 9 Nov 1999 17:47:42 +0000 (+0000) Subject: uses test -r instead of test -e, was reported as a portability bug wrt X-Git-Tag: GNOME_COMMON_1_2_1~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c90391575a9e4825579f79d274e7d4a70bde5e06;p=platform%2Fupstream%2Fgnome-common.git 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 --- diff --git a/macros/ChangeLog b/macros/ChangeLog index f909414..5084178 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,8 @@ +1999-11-09 Eskil Heyn Olsen + + * gnome-pilot.m4: uses test -r instead of test -e, was reported as + a portability bug wrt solaris. + 1999-10-31 Eskil Heyn Olsen * gnome-pilot.m4: added PILOT_LINK_CHECK, used by diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4 index e0e6f29..e8a5263 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/.")