diff options
author | Marvin Scholz <epirat07@gmail.com> | 2018-03-20 13:24:11 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-03-20 22:28:07 +0200 |
commit | 1c8d4bf05b85b0e9f7dc5b1438f4e33b515db668 (patch) | |
tree | e108cc91f38379a07041aaf63a0fb4c7e664aeb6 /docs/markdown | |
parent | 62165aef4369f86e289f897a0c73fd3b994bc76f (diff) | |
download | meson-1c8d4bf05b85b0e9f7dc5b1438f4e33b515db668.zip meson-1c8d4bf05b85b0e9f7dc5b1438f4e33b515db668.tar.gz meson-1c8d4bf05b85b0e9f7dc5b1438f4e33b515db668.tar.bz2 |
Docs: Correct env variable SCAN_BUILD to SCANBUILD
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/howtox.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index 4e7e220..acc18d7 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -125,9 +125,9 @@ Install scan-build and configure your project. Then do this: $ ninja scan-build ``` -You can use the `SCAN_BUILD` environment variable to choose the scan-build executable. +You can use the `SCANBUILD` environment variable to choose the scan-build executable. ```console -$ SCAN_BUILD=<your exe> ninja scan-build +$ SCANBUILD=<your exe> ninja scan-build ``` |