]> git.pld-linux.org Git - packages/mozjs38.git/blob - mozjs38-copy-headers.patch
Copy headers on install instead of symlinking. Release 2
[packages/mozjs38.git] / mozjs38-copy-headers.patch
1 Description: Copy headers on install instead of symlinking
2 Author: Rico Tzschichholz <ricotz@ubuntu.com>
3 Forwarded: no
4 Last-Update: 2014-10-29
5
6 ---
7
8 Index: b/python/mozbuild/mozbuild/backend/recursivemake.py
9 ===================================================================
10 --- a/python/mozbuild/mozbuild/backend/recursivemake.py
11 +++ b/python/mozbuild/mozbuild/backend/recursivemake.py
12 @@ -796,7 +796,7 @@
13              return
14  
15          for source, dest, _ in self._walk_hierarchy(obj, exports):
16 -            self._install_manifests['dist_include'].add_symlink(source, dest)
17 +            self._install_manifests['dist_include'].add_copy(source, dest)
18  
19              if not os.path.exists(source):
20                  raise Exception('File listed in EXPORTS does not exist: %s' % source)
This page took 0.053376 seconds and 3 git commands to generate.