mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
8 lines
215 B
Bash
Executable file
8 lines
215 B
Bash
Executable file
#!/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
|