blob: 4568bac1d4efb70b9c0359334cf4467581b4c5b2 [file] [log] [blame]
#!/bin/bash
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
# replaced by controllable compression in EAPI 4
hasq "${EAPI}" 0 1 2 3 || exit 0
ret=0
find "${D}" -type d -name man > "${T}"/prepallman.filelist
while read mandir ; do
mandir=${mandir#${D}}
prepman "${mandir%/man}"
((ret|=$?))
done < "${T}"/prepallman.filelist
exit ${ret}