Add script for properly breaking out the doc dist.

This commit is contained in:
Jordan K. Hubbard 1998-01-24 17:45:14 +00:00
parent 1f2ea3a434
commit 99e6f3d3e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32742

8
release/scripts/doc-make.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# Create the doc dist.
if [ -d ${RD}/trees/bin/usr/share/doc ]; then
( cd ${RD}/trees/bin/usr/share/doc;
find . | cpio -dumpl ${RD}/trees/doc/usr/share/doc ) &&
rm -rf ${RD}/trees/bin/usr/share/doc
fi