mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
test -e' is broken on SunOS 5.8. Replace with
test -r'.
This commit is contained in:
parent
0ee298df97
commit
f8fe312a16
@ -100,13 +100,13 @@ else
|
|||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test ! -e testdata/test.ldif ; then
|
if test ! -r testdata/test.ldif ; then
|
||||||
${LN_S} ${SRCDIR}/data testdata
|
${LN_S} ${SRCDIR}/data testdata
|
||||||
fi
|
fi
|
||||||
if test ! -e schema/core.schema ; then
|
if test ! -r schema/core.schema ; then
|
||||||
${LN_S} ${TOPSRCDIR}/servers/slapd/schema schema
|
${LN_S} ${TOPSRCDIR}/servers/slapd/schema schema
|
||||||
fi
|
fi
|
||||||
if test ! -e ucdata/UnicodeData.txt ; then
|
if test ! -r ucdata/UnicodeData.txt ; then
|
||||||
${LN_S} ../libraries/liblunicode ucdata
|
${LN_S} ../libraries/liblunicode ucdata
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user