mozjs38-copy-headers.patch 781 B

123456789101112131415161718192021
  1. Tanım: 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. Index: b/python/mozbuild/mozbuild/backend/recursivemake.py
  7. ===================================================================
  8. --- a/python/mozbuild/mozbuild/backend/recursivemake.py
  9. +++ b/python/mozbuild/mozbuild/backend/recursivemake.py
  10. @@ -796,7 +796,7 @@
  11. return
  12. for source, dest, _ in self._walk_hierarchy(obj, exports):
  13. - self._install_manifests['dist_include'].add_symlink(source, dest)
  14. + self._install_manifests['dist_include'].add_copy(source, dest)
  15. if not os.path.exists(source):
  16. raise Exception('File listed in EXPORTS does not exist: %s' % source)