From b329df8cc33cc409ba4d67b3607ad93ba4da9c9f Mon Sep 17 00:00:00 2001 From: kelson42 Date: Mon, 16 Dec 2013 15:08:37 +0100 Subject: [PATCH] + remove the backend option from the usage(), we only use xapian now --- src/installer/kiwix-install.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/kiwix-install.cpp b/src/installer/kiwix-install.cpp index 1ba16c4..61a14c4 100644 --- a/src/installer/kiwix-install.cpp +++ b/src/installer/kiwix-install.cpp @@ -35,7 +35,7 @@ enum supportedBackend { XAPIAN }; enum supportedAction { NONE, ADDCONTENT }; void usage() { - cout << "Usage: kiwix-install [--verbose] [--backend=xapian] [--buildIndex] addcontent ZIM_PATH KIWIX_PATH" << endl; + cout << "Usage: kiwix-install [--verbose] [--buildIndex] addcontent ZIM_PATH KIWIX_PATH" << endl; exit(1); }