mirror of
https://github.com/samba-team/samba.git
synced 2025-06-24 15:17:06 +03:00
12 lines
198 B
Bash
Executable File
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
|