summaryrefslogtreecommitdiffstats
path: root/makeself
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2018-09-23 22:50:20 +0200
committerCosta Tsaousis <costa@tsaousis.gr>2018-09-23 23:50:20 +0300
commite54090623ec06e06a29a0a1ad018e33129f19bf4 (patch)
treeeb69f9a7a2b351c8655ac2ee5dea054cd01a52f8 /makeself
parentfc1008b7cc6d8fe6a5252bf0e7444b94d861ff81 (diff)
Fix several typos in documentation (#4270)
Diffstat (limited to 'makeself')
-rw-r--r--makeself/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/makeself/README.md b/makeself/README.md
index de54eb349e..e7bb8612af 100644
--- a/makeself/README.md
+++ b/makeself/README.md
@@ -1,6 +1,6 @@
# netdata static binary build
-To build the static binary 64bit distribution package, run:
+To build the static binary 64-bit distribution package, run:
```bash
$ cd /path/to/netdata.git
@@ -8,12 +8,12 @@ $ ./makeself/build-x86_64-static.sh
```
The program will:
-
+
1. setup a new docker container with Alpine Linux
2. install the required alpine packages (the build environment, needed libraries, etc)
3. download and compile third party apps that are packaged with netdata (`bash`, `curl`, etc)
4. compile netdata
-
+
Once finished, a file named `netdata-vX.X.X-gGITHASH-x86_64-DATE-TIME.run` will be created in the current directory. This is the netdata binary package that can be run to install netdata on any other computer.
---
@@ -43,4 +43,4 @@ If netdata crashes, `valgrind` will print a stack trace of the issue. Open a git
To stop netdata while it runs under `valgrind`, press Control-C on the console.
-> If you ommit the parameter `--undef-value-errors=no` to valgrind, you will get hundreds of errors about conditional jumps that depend on unitialized values. This is normal. Valgrind has heuristics to prevent it from printing such errors for system libraries, but for the static netdata binary, all the required libraries are built into netdata. So, valgrind cannot appply its heuristics and prints them.
+> If you omit the parameter `--undef-value-errors=no` to valgrind, you will get hundreds of errors about conditional jumps that depend on uninitialized values. This is normal. Valgrind has heuristics to prevent it from printing such errors for system libraries, but for the static netdata binary, all the required libraries are built into netdata. So, valgrind cannot appply its heuristics and prints them.