]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - release/scripts/manpages-make.sh
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / release / scripts / manpages-make.sh
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # Move all the manpages out to their own dist, using the base dist as a
7 # starting point.
8 if [ -d ${RD}/trees/base/usr/share/man ]; then
9         ( cd ${RD}/trees/base/usr/share/man;
10         find . | cpio -dumpl ${RD}/trees/manpages/usr/share/man > /dev/null 2>&1) &&
11         rm -rf ${RD}/trees/base/usr/share/man;
12 fi