#!/bin/bash
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: prepallman 14896 2009-11-26 14:21:57Z grobian $

ret=0

[[ -d ${ED} ]] || exit ${ret}

find "${ED}" -type d -name man > "${T}"/prepallman.filelist
while read mandir ; do
	mandir=${mandir#${ED}}
	prepman "${mandir%/man}"
	((ret|=$?))
done < "${T}"/prepallman.filelist

exit ${ret}
