diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-04-27 20:43:21 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-30 23:04:12 +0100 |
commit | 31e6dda52d0ccba0d90848134e79d5c585961fb8 (patch) | |
tree | 1814e2b2c3cc03e457a28c05a694cb97536deb86 /meta | |
parent | 8cf04ed2a85512950f996d70e2553091b1ee9deb (diff) | |
download | poky-31e6dda52d0ccba0d90848134e79d5c585961fb8.tar.gz |
python3: remove sys_platform_is_now_always_linux2.patch
It is aready in the source.
(From OE-Core rev: 99f9df3add049ec18dbcd604646a67dc59b3db16)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python3/sys_platform_is_now_always_linux2.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/python/python3/sys_platform_is_now_always_linux2.patch b/meta/recipes-devtools/python/python3/sys_platform_is_now_always_linux2.patch deleted file mode 100644 index 506210fa17..0000000000 --- a/meta/recipes-devtools/python/python3/sys_platform_is_now_always_linux2.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | Upstream-Status: Accepted [http://hg.python.org/cpython/rev/c816479f6aaf/] | ||
2 | Bugtracker: http://bugs.python.org/issue12326 | ||
3 | |||
4 | [Removed "Misc/NEWS" hunk] | ||
5 | |||
6 | Signed-off-by: Andreas Oberritter <obi@opendreambox.org> | ||
7 | |||
8 | # HG changeset patch | ||
9 | # User Victor Stinner <victor.stinner@haypocalc.com> | ||
10 | # Date 1313841758 -7200 | ||
11 | # Node ID c816479f6aaf71dbd3f3fe4b239186d60c55ce48 | ||
12 | # Parent 3e093590ac57fdda428c7da3f72ddf0c475ecf2b | ||
13 | Issue #12326: sys.platform is now always 'linux2' on Linux | ||
14 | |||
15 | Even if Python is compiled on Linux 3. | ||
16 | |||
17 | Index: Python-3.3.0rc2/configure.ac | ||
18 | =================================================================== | ||
19 | --- Python-3.3.0rc2.orig/configure.ac 2012-09-09 02:11:14.000000000 -0700 | ||
20 | +++ Python-3.3.0rc2/configure.ac 2012-09-20 00:44:03.317124001 -0700 | ||
21 | @@ -366,7 +366,7 @@ | ||
22 | MACHDEP="$ac_md_system$ac_md_release" | ||
23 | |||
24 | case $MACHDEP in | ||
25 | - linux*) MACHDEP="linux";; | ||
26 | + linux*) MACHDEP="linux2";; | ||
27 | cygwin*) MACHDEP="cygwin";; | ||
28 | darwin*) MACHDEP="darwin";; | ||
29 | irix646) MACHDEP="irix6";; | ||