Blame SOURCES/copy-headers.patch

c4fa72
From 8b2d7a77bfb4dbd513763501ed7e9722058ee9af Mon Sep 17 00:00:00 2001
c4fa72
From: Rico Tzschichholz <ricotz@ubuntu.com>
c4fa72
Date: Wed, 5 Jul 2017 22:45:59 -0700
c4fa72
Subject: [PATCH] build: Copy headers on install instead of symlinking
c4fa72
c4fa72
Patch ported forward to mozjs52 by Philip Chimento
c4fa72
<philip.chimento@gmail.com>.
c4fa72
---
c4fa72
 python/mozbuild/mozbuild/backend/recursivemake.py | 6 +++---
c4fa72
 1 file changed, 3 insertions(+), 3 deletions(-)
c4fa72
c4fa72
diff --git a/python/mozbuild/mozbuild/backend/recursivemake.py b/python/mozbuild/mozbuild/backend/recursivemake.py
c4fa72
index 132dcf94..33d489a6 100644
c4fa72
--- a/python/mozbuild/mozbuild/backend/recursivemake.py
c4fa72
+++ b/python/mozbuild/mozbuild/backend/recursivemake.py
c4fa72
@@ -1307,11 +1307,11 @@ def _process_final_target_files(self, obj, files, backend_file):
c4fa72
                                 raise Exception("Wildcards are only supported in the filename part of "
c4fa72
                                                 "srcdir-relative or absolute paths.")
c4fa72
 
c4fa72
-                            install_manifest.add_pattern_symlink(basepath, wild, path)
c4fa72
+                            install_manifest.add_pattern_copy(basepath, wild, path)
c4fa72
                         else:
c4fa72
-                            install_manifest.add_pattern_symlink(f.srcdir, f, path)
c4fa72
+                            install_manifest.add_pattern_copy(f.srcdir, f, path)
c4fa72
                     else:
c4fa72
-                        install_manifest.add_symlink(f.full_path, dest)
c4fa72
+                        install_manifest.add_copy(f.full_path, dest)
c4fa72
                 else:
c4fa72
                     install_manifest.add_optional_exists(dest)
c4fa72
                     backend_file.write('%s_FILES += %s\n' % (