Description: Add -o to manlifter
 The manlifter man page refers to a -o option, but manlifter itself
 doesn't recognize it.  This patch adds the option.
Author: Jeff Licquia <licquia@debian.org>
Last-Update: 2018-05-13
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/manlifter
+++ b/manlifter
@@ -625,6 +625,8 @@
             makepatch = True
         elif (switch == '-M'):	# Make a patch with specified page
             patchlift = True
+        elif (switch == '-o'):  # Specify output directory
+            outdir = val
 	elif (switch == '-p'):	# Specify patch directory
 	    patchdir = os.path.abspath(val)
         elif (switch == '-P'):
@@ -706,7 +708,7 @@
         sys.stderr.write("manlifter: can't find doclifter!\n")
         sys.exit(1)
     # Gather options
-    (options, arguments) = getopt.getopt(sys.argv[1:], "d:ef:hI:mMp:Pqs:SvwX:")
+    (options, arguments) = getopt.getopt(sys.argv[1:], "d:ef:hI:mMop:Pqs:SvwX:")
     # Do the real work
     if "-P" in sys.argv and hotshot:
         prof = hotshot.Profile("manlifter.prof")
