From 859a5257b3a2526f101f16b9451d7b1b95d995b6 Mon Sep 17 00:00:00 2001 From: Bobinson K B Date: Tue, 13 Aug 2019 18:01:21 +0530 Subject: [PATCH] Update README.md corrected an issue with the path --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6f9cf26..2a78a0c7 100644 --- a/README.md +++ b/README.md @@ -36,12 +36,12 @@ export BOOST_ROOT=/root/boost_1_67_0 export CC=gcc-5 ; export CXX=g++-5 cd $HOME/src git clone https://github.com/peerplays-network/peerplays.git -mkdir $HOME/peerplays/build; cd $HOME/src/peerplays/build +mkdir $HOME/src/peerplays/build; cd $HOME/src/peerplays/build git submodule update --init --recursive cmake -DBOOST_ROOT="$BOOST_ROOT" -DCMAKE_BUILD_TYPE=Release .. make -j$(nproc) -ake install # this can install the executable files under /usr/local +make install # this can install the executable files under /usr/local ``` Rest of the instructions on starting the chain remains same.