blob: 8cff5eeaa37a63fa299b863935382fb42d31a69a [file] [log] [blame]
#!/bin/bash
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
source "${PORTAGE_BIN_PATH:-/usr/local/google/home/vapier/src/android/mdk/build/portage/tmp/prefix-portage-2.2.14/destdir/usr/lib/portage/bin}"/isolated-functions.sh
# replaced by controllable compression in EAPI 4
___eapi_has_docompress && exit 0
if ! ___eapi_has_prefix_variables; then
ED=${D}
fi
ret=0
# PREFIX LOCAL: ED needs not to exist, wheras D does
[[ -d ${ED} ]] || exit ${ret}
# END PREFIX LOCAL
while IFS= read -r -d '' mandir ; do
mandir=${mandir#${ED}}
prepman "${mandir%/man}"
((ret|=$?))
done < <(find "${ED}" -type d -name man -print0)
exit ${ret}