python: add patch to abort build on failed module build 927/head
authorAlexandru Ardelean <ardeleanalex@gmail.com>
Tue, 10 Feb 2015 19:21:06 +0000 (21:21 +0200)
committerAlexandru Ardelean <ardeleanalex@gmail.com>
Thu, 19 Feb 2015 14:00:04 +0000 (16:00 +0200)
Taken from buildroot:
  http://git.buildroot.net/buildroot/plain/package/python/014-abort-on-failed-modules.patch

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
lang/python/patches/170-abort-on-failed-modules.patch [new file with mode: 0644]

diff --git a/lang/python/patches/170-abort-on-failed-modules.patch b/lang/python/patches/170-abort-on-failed-modules.patch
new file mode 100644 (file)
index 0000000..4bceeb6
--- /dev/null
@@ -0,0 +1,21 @@
+Abort on failed module build
+
+When building a Python module fails, the setup.py script currently
+doesn't exit with an error, and simply continues. This is not a really
+nice behavior, so this patch changes setup.py to abort with an error,
+so that the build issue is clearly noticeable.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/setup.py
+===================================================================
+--- a/setup.py
++++ b/setup.py
+@@ -283,6 +283,7 @@
+             print "Failed to build these modules:"
+             print_three_column(failed)
+             print
++            sys.exit(1)
+     def build_extension(self, ext):