Remove LOG_NO_STDOUT flag

Summary: Remove LOG_NO_STDOUT passed to CMAKE. That option doesn't exist anymore.

Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D702
This commit is contained in:
Mislav Bradac 2017-08-23 17:42:49 +02:00
parent 7f1c7a46cc
commit ffec56c75b
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ if [[ "${skip_compile}" == false ]]; then
# compile memgraph # compile memgraph
cd ${project_dir}/build cd ${project_dir}/build
rm -rf ./* rm -rf ./*
cmake -DLOG_NO_STDOUT=ON -DCMAKE_BUILD_TYPE:String=${build_type} .. cmake -DCMAKE_BUILD_TYPE:String=${build_type} ..
make -j8 make -j8
fi fi