From f4e9c703b32d037cfb5b0fe3e46723849282e116 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 20 Feb 2015 09:33:41 +0100 Subject: [PATCH] Revert "python: add patch to abort build on failed module build" --- .../patches/170-abort-on-failed-modules.patch | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 lang/python/patches/170-abort-on-failed-modules.patch diff --git a/lang/python/patches/170-abort-on-failed-modules.patch b/lang/python/patches/170-abort-on-failed-modules.patch deleted file mode 100644 index 4bceeb62d..000000000 --- a/lang/python/patches/170-abort-on-failed-modules.patch +++ /dev/null @@ -1,21 +0,0 @@ -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 - -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): -