summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2022-11-17 21:48:39 +0900
committerRyo Nakamura <upa@haeena.net>2022-11-17 21:48:39 +0900
commitfb2f0b2e458df15629957c3934c53353e8727886 (patch)
treebde482eee8738253617b61ca0228b51d925e8033 /README.md
parentd448f9eb8aae605e6df53e4545e8170bcd9fd7cc (diff)
fix typo
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index 2d2f092..c958825 100644
--- a/README.md
+++ b/README.md
@@ -181,16 +181,15 @@ sudo apt install libkrb5-dev
git clone https://github.com/upa/mscp -b async-write
cd mscp
-# build pathched libssh
+# build patched libssh
git clone https://git.libssh.org/projects/libssh.git/ --depth=10 -b libssh-0.10.4
cd libssh && git apply ../patch/libssh-0.10.4.patch
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../../libssh-installed
make && make install
-# build mscp with patched libssh
-# mv to mscp dir
-mv ../..
+# build mscp with the patched libssh
+mv ../.. # mv to mscp dir
mkdir build && cd build
cmake .. -DLIBSSH_PATH=$(pwd)/../libssh-installed -DWITH_ASYNC_WRITE=1
make