Browse Source

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 7 years ago
parent
commit
1a8868ccad
1 changed files with 1 additions and 1 deletions
  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
 #make test
 #make test
-sudo make install
+make install
 #make clean
 #make clean