mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +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;
|
||||
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user