Explorar el Código

Avoid using sudo in the cppcms-cppdb installation (#3202)

Using sudo here is unnecessary (apparently, given that all the cppcms
tests pass without it locally) and it creates root-owned files in the
installs directory, which is something we generally try to avoid.
Michael Hixson hace 7 años
padre
commit
1a8868ccad
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      toolset/setup/linux/frameworks/cppcms-cppdb.sh

+ 1 - 1
toolset/setup/linux/frameworks/cppcms-cppdb.sh

@@ -23,7 +23,7 @@ cmake -DCMAKE_INSTALL_PREFIX=${CPPDBROOT} ..
 
 make
 #make test
-sudo make install
+make install
 #make clean