summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers/prepallman
blob: c9e1bdf4a37baa90ec7dcc6bb92701056dc73da3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh

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}