aboutsummaryrefslogtreecommitdiff
path: root/docs/README.Linux.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/README.Linux.md')
-rw-r--r--docs/README.Linux.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/README.Linux.md b/docs/README.Linux.md
index 7ccb333e62..d1eec2d493 100644
--- a/docs/README.Linux.md
+++ b/docs/README.Linux.md
@@ -153,7 +153,7 @@ cmake ../kodi -DCMAKE_INSTALL_PREFIX=/usr/local -DCORE_PLATFORM_NAME=gbm -DGBM_R
```
cmake --build . -- VERBOSE=1 -j$(getconf _NPROCESSORS_ONLN)
```
-**TIP:** By adding `-j<number>` to the make command, you can choose how many concurrent jobs will be used and expedite the build process. It is recommended to use `-j$(getconf _NPROCESSORS_ONLN)` to compile on all available processor cores. The build machine can also be configured to do this automatically by adding `export MAKEFLAGS="-j(getconf _NPROCESSORS_ONLN)"` to your shell config (e.g. `~/.bashrc`).
+**TIP:** By adding `-j<number>` to the make command, you can choose how many concurrent jobs will be used and expedite the build process. It is recommended to use `-j$(getconf _NPROCESSORS_ONLN)` to compile on all available processor cores. The build machine can also be configured to do this automatically by adding `export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"` to your shell config (e.g. `~/.bashrc`).
After the build process completes successfully you can test your shiny new Kodi build while in the build directory:
```