test -e' is broken on SunOS 5.8. Replace with test -r'.

This commit is contained in:
Hallvard Furuseth 2003-11-05 14:53:48 +00:00
parent 0ee298df97
commit f8fe312a16

View 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