Hi, I am trying to prepare an ebuild for a local system config, which includes symlinks in /opt to directories in /afs space. links are created in ${D}/image/opt, but the following line in prepallman for x in "${D}"opt/*/man "${D}"usr/share/man "${D}"usr/local/man "${D}"usr/X11R6/man ; do includes dirs outside ${D} tree. Would it be possible to replace that line with something like for x in `find ${D} -name man -type d` ; do (in analogy to prepalldocs and maybe match the dirs in original line) ?
seems a sane enough fix
committed this to head: for x in $(find "${D}" -name man -type d -printf '%P\n') ; do prepman ${x%/man} done
this has been fixed long time ago -> closing