This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Upgraded man command


This seems like a good candidate for bugzilla:

http://sourceware.org/bugzilla/enter_bug.cgi?product=cygwin

The component for the bug would be "Cygwin Applications".

cgf

On Wed, Nov 24, 2004 at 11:50:59AM -0500, Harig, Mark wrote:
>It's possible that he had the same problem I did,
>which is that /usr/share/misc/man.conf did not have
>write permission turned on (and so the file copying
>operation failed).
>
>Possibly, the following code in /etc/postinstall/man.sh
>should be changed:
>
>   if [ ! -e ${datadir}/misc/man.conf ] ; then
>      cp ${datadir}/misc/man.conf.default ${datadir}/misc/man.conf
>      chmod 644 ${datadir}/misc/man.conf
>   fi
>
>to:
>
>   if [ ! -e ${datadir}/misc/man.conf ] ; then
>      chmod 644 ${datadir}/misc/man.conf
>      cp ${datadir}/misc/man.conf.default ${datadir}/misc/man.conf
>   fi

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]