On Tue, Aug 13, 2013 at 4:36 AM, Brian McQueen <[email protected]> wrote: > thanks > > "make clean && sudo make install" was triggering it from head of master, but > the v1.8.0 mentioned in the docs is OK, so I guess no doc change is > required. >
You should only ever use sudo to run the install step of make, as it is you're building everything as root. If you want it all in one line something like this would be more appropriate. $ make clean && make && sudo make install Cheers, Josh.
