summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-05-20 14:23:29 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-20 16:24:26 +0200
commit59c3b3b702d946ced9e62b4c56aa8fa2448e835d (patch)
tree5c711724b62f64fa800a8f899c673f879d5778e1 /Documentation
parent7d8bfe4f3a6e004ed3b3694889eae537e3eada5d (diff)
downloadserenity-59c3b3b702d946ced9e62b4c56aa8fa2448e835d.zip
Revert "Meta: Restore instructions to create build directory for CMake"
This reverts commit 83137f76de2a406e1e58da0421240cb1f961cce5.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/BuildInstructions.md11
1 files changed, 4 insertions, 7 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md
index 2f2184fdf5..bdd30f5ba0 100644
--- a/Documentation/BuildInstructions.md
+++ b/Documentation/BuildInstructions.md
@@ -80,15 +80,12 @@ $ cd Toolchain
$ ./BuildIt.sh
```
-Once you've built the toolchain, create a directory for the build to live in (for example, `Build/`), and run the CMake build:
-```bash
-cd ..
-mkdir Build && cd Build
-cmake ..
-```
+Building the toolchain will also automatically create a `Build/` directory for the build to live in, and build cmake inside that directory.
-Once the toolchain and cmake have been built, run the `make` and `make install` commands:
+Once the toolchain and cmake have been built, go into the `Build/` directory and run the `make` and `make install` commands:
```bash
+$ cd ..
+$ cd Build
$ make
$ make install
```