summaryrefslogtreecommitdiff
path: root/Documentation/BuildInstructions.md
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-03-11 19:05:33 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-11 21:01:29 +0100
commitd0427b610c52a88f2e0a13f76fbe4c7c26769999 (patch)
treeb41ffe4aae03cd93680499ca60a7130cefe8448a /Documentation/BuildInstructions.md
parent07f25ca6beee0a1c13ffbf790fefdbf6aad6ad36 (diff)
downloadserenity-d0427b610c52a88f2e0a13f76fbe4c7c26769999.zip
Documentation: Update build path in BuildInstructions.md
Build/ is now /Build/i686/. No need to mention other targets just yet.
Diffstat (limited to 'Documentation/BuildInstructions.md')
-rw-r--r--Documentation/BuildInstructions.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md
index f9038ade3b..eafb94ecb5 100644
--- a/Documentation/BuildInstructions.md
+++ b/Documentation/BuildInstructions.md
@@ -181,13 +181,13 @@ $ cd Toolchain
$ ./BuildIt.sh
```
-Building the toolchain will also automatically create a `Build/` directory for the build to live in.
+Building the toolchain will also automatically create a `Build/i686/` directory for the build to live in.
-Once the toolchain has been built, go into the `Build/` directory and run the commands. Note that while `ninja` seems to be faster, you can also just use GNU make, by omitting `-G Ninja` and calling `make` instead of `ninja`:
+Once the toolchain has been built, go into the `Build/i686/` directory and run the commands. Note that while `ninja` seems to be faster, you can also just use GNU make, by omitting `-G Ninja` and calling `make` instead of `ninja`:
```console
-$ cd ../Build
-$ cmake .. -G Ninja
+$ cd ../Build/i686
+$ cmake ../.. -G Ninja
$ ninja install
```