From 313b87f3c68f849b1747e0f6eb5cf89ff8e8c9b5 Mon Sep 17 00:00:00 2001 From: Chaoqi Zhang Date: Tue, 15 Mar 2022 00:30:08 +0800 Subject: [PATCH] doc: update readme (#5898) add the command to `mkdir build` first --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4849c33d8..44e643662 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ python scripts/mk_make.py -x then: ```bash -cd build +mkdir build && cd build nmake ``` @@ -54,7 +54,7 @@ Execute: ```bash python scripts/mk_make.py -cd build +mkdir build && cd build make sudo make install ``` @@ -86,7 +86,7 @@ the ``--prefix=`` command line option to change the install prefix. For example: ```bash python scripts/mk_make.py --prefix=/home/leo -cd build +mkdir build && cd build make make install ```