Description:  Don't fail the build if manpage generation fails 
   (this is an horrible hack but it's less horrible IMO than the current linker breakage)
Author: Peter Michael Green <plugwash@raspbian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2017-11-04

Index: python-fabio-0.5.0+dfsg/setup.py
===================================================================
--- python-fabio-0.5.0+dfsg.orig/setup.py
+++ python-fabio-0.5.0+dfsg/setup.py
@@ -217,8 +217,8 @@ class BuildMan(Command):
 
                 p = subprocess.Popen(command_line, env=env)
                 status = p.wait()
-                if status != 0:
-                    raise RuntimeError("Fail to generate '%s' man documentation" % target_name)
+                #if status != 0:
+                #    raise RuntimeError("Fail to generate '%s' man documentation" % target_name)
             finally:
                 # clean up the script
                 if script_name is not None:
