mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
9 lines
303 B
Bash
Executable file
9 lines
303 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Move all the manpages out to their own dist, using the bin dist as a
|
|
# starting point.
|
|
if [ -d ${RD}/trees/bin/usr/share/man ]; then
|
|
( cd ${RD}/trees/bin/usr/share/man;
|
|
find . | cpio -dumpl ${RD}/trees/manpages/usr/share/man > /dev/null 2>&1) &&
|
|
rm -rf ${RD}/trees/bin/usr/share/man;
|
|
fi
|