lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 07961ce867ec2ca8e96141124470444aab69815a
parent 10313e98af8f881facc2a3fe83073d314e96ecbd
Author: Steven Barth <steven@midlink.org>
Date:   Fri, 20 Feb 2015 09:34:12 +0100

Merge pull request #934 from openwrt/revert-927-python-push2

Revert "python: add patch to abort build on failed module build"
Diffstat:
Dlang/python/patches/170-abort-on-failed-modules.patch | 21---------------------
1 file changed, 0 insertions(+), 21 deletions(-)

diff --git a/lang/python/patches/170-abort-on-failed-modules.patch b/lang/python/patches/170-abort-on-failed-modules.patch @@ -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 <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): -