diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ob-installdocs.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ob-installdocs.sh b/src/ob-installdocs.sh index 1e596e3..dfd5b70 100644 --- a/src/ob-installdocs.sh +++ b/src/ob-installdocs.sh @@ -50,7 +50,8 @@ main() ob_info "$(ob_get_msg 'installing_docs')" "${pkg}" mkdir -p "${data_doc_dir}" || \ ob_error "$(ob_get_msg 'cant_make_doc_dir')" - ob_get_doc_files | while read src dest; do + ob_get_doc_files "${OPK_HOST_ARCH}" "${OPK_HOST_PLAT}" | \ + while read src dest; do if [ -f "${src}" ]; then if [ "${dest%/*}" != "${dest}" ]; then mkdir -p "${data_doc_dir}/${dest%/*}" || \ |