Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Install seq, a sequence generator' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Install seq, a sequence generator
Authored by: mstillwell on Dec 10, '03 08:09:02PM
It's actually pretty easy to get the "make install" option to install everything in your home directory. If you add a --prefix switch to the ./configure line:

$ ./configure --prefix=$HOME/local
then

$ make
$ make install
will install the binaries in ~/local/bin, the man pages in ~/local/man and so forth.

[ Reply to This | # ]