From c24c874810054cb0185807fe797d92056207bbbe Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 28 Dec 2014 21:54:53 +0100 Subject: python3: rename patches to the new convention Note that we don't use completely sequential numbers, because patches below 100 are used to address cross-compilation issues in Python 3, while patches above 100 are used to make more Python 3 modules configurable. [Thomas: fixup commit log.] Signed-off-by: Thomas Petazzoni Reviewed-by: "Yann E. MORIN" --- .../python3-013-abort-on-failed-modules.patch | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 package/python3/python3-013-abort-on-failed-modules.patch (limited to 'package/python3/python3-013-abort-on-failed-modules.patch') diff --git a/package/python3/python3-013-abort-on-failed-modules.patch b/package/python3/python3-013-abort-on-failed-modules.patch deleted file mode 100644 index 5ad86fb903..0000000000 --- a/package/python3/python3-013-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 -@@ -284,6 +284,7 @@ - print("Failed to build these modules:") - print_three_column(failed) - print() -+ sys.exit(1) - - def build_extension(self, ext): - -- cgit v1.2.3