diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-08 00:00:29 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-09 22:35:30 +0100 |
commit | 63aeae6538770ab7f4eb048373b2e8d99c26d4c5 (patch) | |
tree | 47eb9da38f1747493ba5be0dcbd232314e55af22 /package/python3/0010-Abort-on-failed-module-build.patch | |
parent | 3c98442669f173818a8cce9479ebb0806cb9f8a2 (diff) | |
download | buildroot-63aeae6538770ab7f4eb048373b2e8d99c26d4c5.tar.gz buildroot-63aeae6538770ab7f4eb048373b2e8d99c26d4c5.zip |
python3: refresh Git formatted patches
This refreshes the set of python3 patches so they apply cleanly on the
v3.5.2 tag of cpython Github repository.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python3/0010-Abort-on-failed-module-build.patch')
-rw-r--r-- | package/python3/0010-Abort-on-failed-module-build.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/python3/0010-Abort-on-failed-module-build.patch b/package/python3/0010-Abort-on-failed-module-build.patch index 131354b3f5..74342da0ca 100644 --- a/package/python3/0010-Abort-on-failed-module-build.patch +++ b/package/python3/0010-Abort-on-failed-module-build.patch @@ -1,4 +1,4 @@ -From 86ef08e36597e14cac06aef176f12375a27fdef5 Mon Sep 17 00:00:00 2001 +From 01780527e647b15f7f1aed4351c18fb4098a8707 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Wed, 23 Dec 2015 11:43:24 +0100 Subject: [PATCH] Abort on failed module build @@ -14,10 +14,10 @@ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py -index 8380a64..15b39f5 100644 +index 9a48d5f..d02012d 100644 --- a/setup.py +++ b/setup.py -@@ -296,6 +296,7 @@ class PyBuildExt(build_ext): +@@ -312,6 +312,7 @@ class PyBuildExt(build_ext): print("Failed to build these modules:") print_three_column(failed) print() @@ -26,5 +26,5 @@ index 8380a64..15b39f5 100644 if self.failed_on_import: failed = self.failed_on_import[:] -- -2.6.4 +2.7.4 |