mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
42f6e78dd4
Integration into ./configure ( --enable-bdb2 ). Adaptation of the test-suite ( 'make' -> ldbm; 'make bdb2-local' -> bdb2 ). Minor fixes in slapd/libldbm.
16 lines
199 B
Bash
Executable File
16 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -eq 0 ]; then
|
|
SRCDIR="."
|
|
else
|
|
SRCDIR=$1; shift
|
|
fi
|
|
if [ $# -eq 1 ]; then
|
|
BDB2=$1; shift
|
|
fi
|
|
|
|
. $SRCDIR/scripts/defines.sh $SRCDIR $BDB2
|
|
|
|
echo "modrdn test not yet written"
|
|
exit 0
|