From 446bb88f13080eed131a1b0bd304c45a860a3fab Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <edolstra@gmail.com>
Date: Tue, 27 Mar 2018 19:03:03 +0200
Subject: [PATCH] Remove reference to non-existent manpages

---
 src/nix/command.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/nix/command.cc b/src/nix/command.cc
index 1e6f0d2bb..3d7d582d6 100644
--- a/src/nix/command.cc
+++ b/src/nix/command.cc
@@ -57,8 +57,10 @@ void MultiCommand::printHelp(const string & programName, std::ostream & out)
     }
     printTable(out, table);
 
+#if 0
     out << "\n";
     out << "For full documentation, run 'man " << programName << "' or 'man " << programName << "-<COMMAND>'.\n";
+#endif
 }
 
 bool MultiCommand::processFlag(Strings::iterator & pos, Strings::iterator end)