mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-19 02:28:47 -05:00
build environment changes (for VPATH, lib orderring) test script changes (for VPATH) doc updates
12 lines
152 B
Bash
Executable file
12 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# -eq 0 ]; then
|
|
SRCDIR="."
|
|
else
|
|
SRCDIR=$1; shift
|
|
fi
|
|
|
|
. $SRCDIR/scripts/defines.sh $SRCDIR
|
|
|
|
echo "modrdn test not yet written"
|
|
exit 0
|