소스 검색

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 년 전
부모
커밋
1a8868ccad
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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