summaryrefslogtreecommitdiff
blob: 02d77332b941e8581d17606aa1a93f5961defcb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/prepallman,v 1.12 2005/05/04 23:50:33 vapier Exp $

for x in "${D}"opt/*/man "${D}"usr/share/man "${D}"usr/local/man "${D}"usr/X11R6/man ; do
	if [ -d "${x}" ] ; then
		prepman "`echo "${x}" | sed -e "s:${D}::" -e "s:/man[/]*$::"`"
		export prepallman_banner=no
	fi
done