mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
c09f6050f7
standalone ldb by only running xsltproc if we can find a local copy of
the required stylesheets
(This used to be commit 16be09e0d6
)
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
|