freebsd-dev/release/scripts/catpages-make.sh
2002-05-25 17:31:27 +00:00

13 lines
383 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# Move all the catpages out to their own dist, using the base dist as a
# starting point. This must precede the manpages dist script.
if [ -d ${RD}/trees/base/usr/share/man ]; then
( cd ${RD}/trees/base/usr/share/man;
find cat* whatis | cpio -dumpl ${RD}/trees/catpages/usr/share/man > /dev/null 2>&1) &&
rm -rf ${RD}/trees/base/usr/share/man/cat*;
fi