From 586ffe038e6c718e4c66d98adb9b69438386946a Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 27 Jun 2011 20:55:41 +0200 Subject: [PATCH] INSTALL: added note for systems without sudo support Some people might not have sudo installed or configured. Added a note in the INSTALL file for this case. Closes #3299883. --- INSTALL | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/INSTALL b/INSTALL index a3c91bc6b..29cfd59b6 100644 --- a/INSTALL +++ b/INSTALL @@ -9,10 +9,13 @@ cmake ../ make sudo make install -This way an out-of-tree build is performed. You can also run "cmake ." directly -in the root of source-tree although this is not recommended. When performing an -out-of-tree build after there's already an in-tree build, make sure to run -"make distclean" before running cmake inside build-directory. +If your system does not have "sudo", become root with your preferred mechanism +and run the "make install" command. + +With the above commands an out-of-tree build is performed. You can also run +"cmake ." directly in the root of source tree although this is not recommended. +When performing an out-of-tree build after there's already an in-tree build, +make sure to run "make distclean" before running cmake inside build-directory. If you want to use custom compiler flags simply set the environment variables CFLAGS and CXXFLAGS.