diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-12-11 15:44:18 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-12-11 15:44:18 +0100 |
commit | f4cf6401bd6d40a853d0eb39c0d90588d4c98bb0 (patch) | |
tree | cadba0f976144bf7da238d1ed2fc3986494e33a5 | |
parent | d787c88b665fedbb80851a87964edb72f78fc492 (diff) | |
download | k8055-f4cf6401bd6d40a853d0eb39c0d90588d4c98bb0.zip k8055-f4cf6401bd6d40a853d0eb39c0d90588d4c98bb0.tar.gz |
build.sh: remove hidden call to sudo
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ function cmake_make() { function cmake_install() { cmake_init - echo -e " * install" && cd $BUILD_DIR && sudo make install && cd .. || exit 1 + echo -e " * install" && cd $BUILD_DIR && make install && cd .. || exit 1 } function cmake_tests() { |