diff options
author | Ross Burton <ross.burton@intel.com> | 2018-09-10 14:31:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-13 07:42:28 +0100 |
commit | 27849379a71ba200b461d045a4946eacba8cd62f (patch) | |
tree | 9ce14cde24a2a3d57b27b79a53dee383898337ef /meta/recipes-devtools/python/python3 | |
parent | 0fa20ac73bbff4c7c24123360468464cff003e3a (diff) | |
download | poky-27849379a71ba200b461d045a4946eacba8cd62f.tar.gz |
python3: remove patch that inadvertently disables xattrs
This patch dates back to the addition of the Python 3 recipe to oe-core, and as
listxattr is never added to supports_follow_symlinks the extended attribute
support will never be enabled.
(From OE-Core rev: 9806e141e85b4e4c38eb7b45e6f2fbc2d2aed29d)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3')
-rw-r--r-- | meta/recipes-devtools/python/python3/shutil-follow-symlink-fix.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/meta/recipes-devtools/python/python3/shutil-follow-symlink-fix.patch b/meta/recipes-devtools/python/python3/shutil-follow-symlink-fix.patch deleted file mode 100644 index 802b1c7203..0000000000 --- a/meta/recipes-devtools/python/python3/shutil-follow-symlink-fix.patch +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | shutils should consider symlinks | ||
2 | |||
3 | -Khem | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | --- a/Lib/shutil.py 2013-01-29 12:31:06.926555779 -0800 | ||
8 | +++ b/Lib/shutil.py 2013-01-29 16:31:39.097554182 -0800 | ||
9 | @@ -132,7 +132,7 @@ def copymode(src, dst, *, follow_symlink | ||
10 | st = stat_func(src) | ||
11 | chmod_func(dst, stat.S_IMODE(st.st_mode)) | ||
12 | |||
13 | -if hasattr(os, 'listxattr'): | ||
14 | +if hasattr(os, 'listxattr') and os.listxattr in os.supports_follow_symlinks: | ||
15 | def _copyxattr(src, dst, *, follow_symlinks=True): | ||
16 | """Copy extended filesystem attributes from `src` to `dst`. | ||
17 | |||