diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-05-12 16:43:36 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-01 12:38:42 +0100 |
commit | 9d7867a054f84e6e53cff1da26f32caeec0180d6 (patch) | |
tree | 18554cb2c8b73d7e80b2455a90a4273d46d13ddf /meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch | |
parent | 083d0aa27f49e2b65f200c2c6089c32afd3f6442 (diff) | |
download | poky-9d7867a054f84e6e53cff1da26f32caeec0180d6.tar.gz |
python-numpy: move recipe to own directory
This is done so that patches can be shared with python3-numpy
(From OE-Core rev: 9bffe2f9fb4ce6c0b265f27e5b484fbe076c6349)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch')
-rw-r--r-- | meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch b/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch new file mode 100644 index 0000000000..eb8a71a2e2 --- /dev/null +++ b/meta/recipes-devtools/python-numpy/files/remove-build-path-in-comments.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From c560abff71f98a39a7401f08c2c13dad9ae7f15f Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Thu, 25 Feb 2016 01:23:32 -0500 | ||
4 | Subject: [PATCH] remove build path in comments | ||
5 | |||
6 | It has build path in comments, so remove it. | ||
7 | |||
8 | Upstream-Status: Inappropriate [openembedded specific] | ||
9 | |||
10 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
11 | --- | ||
12 | numpy/distutils/misc_util.py | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py | ||
16 | index 345e60f..dafb068 100644 | ||
17 | --- a/numpy/distutils/misc_util.py | ||
18 | +++ b/numpy/distutils/misc_util.py | ||
19 | @@ -2254,7 +2254,7 @@ def generate_config_py(target): | ||
20 | from distutils.dir_util import mkpath | ||
21 | mkpath(os.path.dirname(target)) | ||
22 | f = open(target, 'w') | ||
23 | - f.write('# This file is generated by %s\n' % (os.path.abspath(sys.argv[0]))) | ||
24 | + f.write('# This file is generated by %s\n' % (os.path.abspath(sys.argv[0]).replace(os.path.abspath('../'),''))) | ||
25 | f.write('# It contains system_info results at the time of building this package.\n') | ||
26 | f.write('__all__ = ["get_info","show"]\n\n') | ||
27 | for k, i in system_info.saved_results.items(): | ||
28 | -- | ||
29 | 1.9.1 | ||
30 | |||