summaryrefslogtreecommitdiffstats
path: root/web/input/doc/faq/libtap.md
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-01-12 22:28:55 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-01-12 22:28:55 (GMT)
commitaa96b7897b40bf1171f08d77e229ec57b2c4119a (patch)
treed6be2cd9ab395ad031968c46d341881f8f3005e1 /web/input/doc/faq/libtap.md
parentc394fa1575c28380e56d4f1e9883d88dfa7266cf (diff)
downloadsite-aa96b7897b40bf1171f08d77e229ec57b2c4119a.tar.gz
Documentation: Denote command lines with "$"
Add a prompt sign to all command lines in code blocks.
Diffstat (limited to 'web/input/doc/faq/libtap.md')
-rw-r--r--web/input/doc/faq/libtap.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/input/doc/faq/libtap.md b/web/input/doc/faq/libtap.md
index 29cd357..c592030 100644
--- a/web/input/doc/faq/libtap.md
+++ b/web/input/doc/faq/libtap.md
@@ -10,10 +10,10 @@ tests are in `lib/tests/test_*.c`.
10The latest libtap version is currently 1.01. However, there is a bug with the 10The latest libtap version is currently 1.01. However, there is a bug with the
11thread implementation. To workaround, run: 11thread implementation. To workaround, run:
12 12
13 CPPFLAGS="-UHAVE_LIBPTHREAD" ./configure 13 $ CPPFLAGS="-UHAVE_LIBPTHREAD" ./configure
14 make 14 $ make
15 make check 15 $ make check
16 make install 16 $ make install
17 17
18Now when you run the Nagios Plugins `./configure` script, it should find the 18Now when you run the Nagios Plugins `./configure` script, it should find the
19libtap library and compile the tests and run them when you run `make` `test`. 19libtap library and compile the tests and run them when you run `make` `test`.