mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Always initialize back-config implicitly
This commit is contained in:
parent
1bc59be16d
commit
51ab3f558d
2 changed files with 987 additions and 1028 deletions
|
|
@ -3060,7 +3060,7 @@ cat > $BACKENDSC << ENDX
|
|||
|
||||
ENDX
|
||||
if test "${STATIC_BACKENDS}"; then
|
||||
for b in ${STATIC_BACKENDS}; do
|
||||
for b in config ${STATIC_BACKENDS}; do
|
||||
bb=`echo "${b}" | sed -e 's/back-//'`
|
||||
cat >> $BACKENDSC << ENDX
|
||||
extern BI_init ${bb}_back_initialize;
|
||||
|
|
@ -3072,7 +3072,7 @@ ENDX
|
|||
BackendInfo slap_binfo[[]] = {
|
||||
ENDX
|
||||
|
||||
for b in ${STATIC_BACKENDS}; do
|
||||
for b in config ${STATIC_BACKENDS}; do
|
||||
bb=`echo "${b}" | sed -e 's/back-//'`
|
||||
echo " Add ${bb} ..."
|
||||
cat >> $BACKENDSC << ENDX
|
||||
|
|
|
|||
Loading…
Reference in a new issue