]> git.sur5r.net Git - openldap/commitdiff
`test -e' is broken on SunOS 5.8. Replace with `test -r'.
authorHallvard Furuseth <hallvard@openldap.org>
Wed, 5 Nov 2003 14:53:48 +0000 (14:53 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Wed, 5 Nov 2003 14:53:48 +0000 (14:53 +0000)
tests/run.in

index e196c9b323d7e0f48aeef4e05ff3c1469c4e9aef..246a27a90794670951f738e3ed1cba584681e42e 100644 (file)
@@ -100,13 +100,13 @@ else
        exit 1;
 fi
 
-if test ! -e testdata/test.ldif ; then
+if test ! -r testdata/test.ldif ; then
        ${LN_S} ${SRCDIR}/data testdata
 fi
-if test ! -e schema/core.schema ; then
+if test ! -r schema/core.schema ; then
        ${LN_S} ${TOPSRCDIR}/servers/slapd/schema schema
 fi
-if test ! -e ucdata/UnicodeData.txt ; then
+if test ! -r ucdata/UnicodeData.txt ; then
        ${LN_S} ../libraries/liblunicode ucdata
 fi