1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-24 15:17:06 +03:00
samba-mirror/source4/lib/ldb/man/build_manpages.sh
Andrew Tridgell 4219ec1dec r790: started working on some documentation (manual pages) for ldb
(This used to be commit dcb9d1a897f7186824e997064902f3d50bad1887)
2007-10-10 12:53:50 -05:00

12 lines
198 B
Bash
Executable File

#!/bin/sh
for f in man/man3/*.yo; do
base=`basename $f .yo`;
man=man/man3/$base.3;
if test $f -nt $man; then
echo Creating $man from $f
yodl2man -o $man $f || rm -f $man
fi
done