diff options
author | P. J. McDermott <pjm@nac.net> | 2012-10-25 19:56:14 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-10-25 19:56:14 (EDT) |
commit | c06b1494a26f5274e72b04286cab28a5d0d7188d (patch) | |
tree | 99259942cb85e88f409824550a8795546019199c /src | |
parent | a8ec0f66b4637cce5df13d1c9389ebb8b5e625cf (diff) |
Make ob_get_doc_files() accept arch and plat args.
The contents of the changelog file might be made architecture-dependent
by binary rebuilds. So prepare to make the file's pathname
architecture-specific to support co-installation of multiple
architectures.
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%/*}" || \ |