summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-04-30 21:59:56 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-04-30 21:59:56 +0200
commit858fefb5f1db61b8cc90149432fdc5f76677311e (patch)
tree31c2e08181baf79f7758f37919394dabb87be429 /src
parent753fc6efd6488d16d83f9cc20b45958d9b208420 (diff)
Do not include help text by default
Diffstat (limited to 'src')
-rw-r--r--src/options.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c
index 61aee64..b947908 100644
--- a/src/options.c
+++ b/src/options.c
@@ -882,7 +882,11 @@ void show_mini_usage(void)
static void show_usage(void)
{
fputs(
+#ifdef INCLUDE_HELP
#include "help.inc"
+#else
+ "See 'man " PACKAGE "'\n"
+#endif
, stdout);
exit(0);
}