]> git.pld-linux.org Git - packages/mozjs38.git/blame - mozjs38-copy-headers.patch
Copy headers on install instead of symlinking. Release 2
[packages/mozjs38.git] / mozjs38-copy-headers.patch
CommitLineData
0fe111a4
MB
1Description: Copy headers on install instead of symlinking
2Author: Rico Tzschichholz <ricotz@ubuntu.com>
3Forwarded: no
4Last-Update: 2014-10-29
5
6---
7
8Index: 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.030016 seconds and 4 git commands to generate.