compile all manpages in parallel!

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-03-28 08:56:53 +02:00
parent 417ce61821
commit dbe74dcc33
1 changed files with 3 additions and 2 deletions

View File

@ -51,9 +51,10 @@ case "$1" in
manbuild)
for src in ${MAN1DSTDIR}/*.text ${MAN7DSTDIR}/*.text; do
echo "Compiling manpage and html for $src"
$A2XM "$src"
$A2XH "$src"
$A2XM "$src" &
$A2XH "$src" &
done
wait
;;
mandirs)