Am I the only one who ends up with the man pages from
module-init-tools ending up in /share/man ..
  --prefix=""  forces an install off of root but also diddles the man
pages install..

>>> From the makefile ..(reformatted for clarity)
# If they haven't overridden mandir, fix it (never /man!)
mandir =
$(shell
if [ ${prefix}/man = $(prefix)/man ]; then
    if [ $(prefix) = / ]; then
        echo /usr/share/man;
    else
        echo $(prefix)/share/man;    <<<
    fi;
else
    echo ${prefix}/man;
fi
)

..one possible solution  (from DIY-Linux)
  make mandir=/usr/share/man install
--
http://linuxfromscratch.org/mailman/listinfo/hlfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to