Ryan <goldenratio+fish@...> writes: > > ryan <at> host ~> help > sed: can't read /usr/local/share/doc/fish/commands.html: No such file > or directory > Gtk-Message: Failed to load module "pk-gtk-module" > Created new window in existing browser session. > > ryan <at> host ~> ls -alF /usr/local/share/doc/fish/ > total 8 > drwxr-xr-x. 2 root root 4096 Jun 7 10:32 ./ > drwxr-xr-x. 3 root root 4096 Jun 7 10:32 ../ > ryan <at> host ~> > > The ./configure > make > make install process seemed to go fine, > although I had to resolve a dependency via 'sudo yum ncurses-devel'. > > (I also ran into https://github.com/ridiculousfish/fishfish/issues/38, > but was able to resolve that by editing > create_manpage_completions.py). > > Any thoughts? > > Thanks, > Ryan R.
Hi Ryan, ran into the same problem today on Fedora 17. Here's how I resolved it: 1) First you need doxygen: -> yum install doxygen 2) cd to the directory where you extracted fishfish.tar.gz and remove file "user_doc", which was empty in my case: -> rm user_doc 3) Create the html documentation: -> make user_doc 4) The previous step created a directory called 'user_doc'. Copy the contents of 'user_doc/html/' to the directory where fish expects the files: -> sudo cp -R * /usr/local/share/doc/fish/ 5) If you haven't already done so, set the $BROWSER environment variable to your preferred Browser: echo $BROWSER set -u BROWSER /opt/google/chrome/google-chrome 6) Check if it works by running: -> help Happy fishing, ZuBsPaCe ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
