Eric Dunstan <e_duns...@...> writes: Oops, there was a typo in the previous post. to configure and compile and install, you do:
../configure && make && make install Note the &&, which is a logical AND. if the command on the left succeeds, the command on the right of the && executes, but if the command on the left fails, the command on the right of the && does not execute. Hence only if ./configure succeeds will make execute, and after that, if make succeeds, make install will execute. Eric _______________________________________________ Agar mailing list [email protected] http://libagar.org/lists.html
