summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch
diff options
context:
space:
mode:
authorDominic Sacré <dominic.sacre@gmx.de>2015-07-28 16:58:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-01 22:24:18 +0100
commit10196e346579fb443e63b57d61393a11c319b9a5 (patch)
treeed6d5e21f8f09af0c992e69cd48ad8aeb29ee168 /meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch
parentb5e9dbbe8245f47d2d3d77f219a2d30a48e1918b (diff)
downloadpoky-10196e346579fb443e63b57d61393a11c319b9a5.tar.gz
python3: delete patches that don't get applied anywhere
These patches are not referenced in any of the Python recipes. (From OE-Core rev: 05d18a1d2630fbe81d8218c3722481d31bf0892f) Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch')
-rw-r--r--meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch b/meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch
deleted file mode 100644
index 77c220aa82..0000000000
--- a/meta/recipes-devtools/python/python3/fix-ast.h-dependency.patch
+++ /dev/null
@@ -1,26 +0,0 @@
1Fix a missed dependency on ast.h which can result in race condition
2at high parallel build
3
4It fixed here
5
6http://hg.python.org/cpython/rev/cfe0a293551f
7
8[YOCTO #5884]
9
10Upstream-Status: Backport
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12
13Index: Python-3.3.3/Makefile.pre.in
14===================================================================
15--- Python-3.3.3.orig/Makefile.pre.in 2014-02-26 09:33:13.868288863 -0800
16+++ Python-3.3.3/Makefile.pre.in 2014-02-26 09:36:27.348292492 -0800
17@@ -853,7 +853,8 @@
18 $(srcdir)/Include/warnings.h \
19 $(srcdir)/Include/weakrefobject.h \
20 pyconfig.h \
21- $(PARSER_HEADERS)
22+ $(PARSER_HEADERS) \
23+ $(AST_H)
24
25 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
26