summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorWieland Hoffmann <themineo+github@gmail.com>2020-04-17 09:50:46 +0000
committerCraig Small <csmall@dropbear.xyz>2020-04-24 18:56:16 +1000
commit4649c5224912141b686c7005d25b2fabb31c7121 (patch)
tree9a3cd032496f7e951a8e15baa865be7269086bcd /INSTALL.md
parentfb0915c3caabc6101302e4fc11c6ff942a5bd349 (diff)
downloadprocps-ng-4649c5224912141b686c7005d25b2fabb31c7121.tar.gz
INSTALL.md: Replace blockquotes with code blocks
The previous syntax (`> `) is for blockquotes, which don't keep newlines when rendered. Codeblocks (` ` at the beginning of the line) do.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/INSTALL.md b/INSTALL.md
index c8aee5f..958b834 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -6,10 +6,11 @@ configure script. If you have a configure script already then
you might not need it.
A typical installation would go something like
-> ./autogen.sh
-> ./configure
-> make
-> make install
+
+ ./autogen.sh
+ ./configure
+ make
+ make install
The configure script has a lot of options, so please have a read
of `configure --help` to see what they are and what they are used
@@ -21,4 +22,4 @@ procps has a series of test scripts (and more are welcome if they
are repeatable). You will need to install DejaGNU to run it and
it is simply:
-> make check
+ make check