mirror of
https://github.com/samba-team/samba.git
synced 2025-07-15 16:59:09 +03:00
code. Yay!
This first commit copies lib/ldb/ from Samba4. A huge congratulations
should go to Simo on this - he has put an enormous amount of work into
ldb, and it's great to see it go into the Samba3 tree.
(This used to be commit bbedf2e343
)
18 lines
331 B
Bash
Executable File
18 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
# install ldb docs
|
|
# tridge@samba.org August 2006
|
|
|
|
MANDIR="$1"
|
|
|
|
MAN1="`/bin/ls man/*.1`"
|
|
MAN3="`/bin/ls man/*.3`"
|
|
|
|
if [ -z "$MAN1" ] && [ -z "$MAN3" ]; then
|
|
echo "No manpages have been built"
|
|
exit 0
|
|
fi
|
|
|
|
mkdir -p "$MANDIR/man1" "$MANDIR/man3"
|
|
cp $MAN1 "$MANDIR/man1/" || exit 1
|
|
cp $MAN3 "$MANDIR/man3/" || exit 1
|