Content deleted Content added
catspec |
Generalize claim from just Linux to Unix-type OS |
||
Line 10:
<code>./configure && make && make install</code>
The reason you type "./configure" (''dot slash'' configure) instead of just "configure" is to indicate explicitly that the script is in the current directory ("."). By default,
Running ./configure --help should give a list of command line arguments accepted by the script, which are usually for enabling or disabling optional features of the software. Typing just ./configure gives the default configuration.<ref>http://www.control-escape.com/linux/lx-swinstall-tar.html</ref>
|