From: Hallvard Furuseth Date: Wed, 5 Nov 2003 14:53:48 +0000 (+0000) Subject: `test -e' is broken on SunOS 5.8. Replace with `test -r'. X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~462 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f8fe312a167c78ccb6bf17f0a6414441a894f448;p=openldap `test -e' is broken on SunOS 5.8. Replace with `test -r'. --- diff --git a/tests/run.in b/tests/run.in index e196c9b323..246a27a907 100644 --- a/tests/run.in +++ b/tests/run.in @@ -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