diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 2f2184fdf57..bdd30f5ba07 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 ```