69d30f
From 3b3c8e37cca418e07bdeceaf3a601805df28d925 Mon Sep 17 00:00:00 2001
69d30f
From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= <fzatlouk@redhat.com>
69d30f
Date: Wed, 15 Jul 2020 08:27:39 +0200
69d30f
Subject: [PATCH] build: Copy headers on install instead of symlinking
69d30f
69d30f
Patch by Philip Chimento ported forward to mozjs78
69d30f
---
69d30f
 python/mozbuild/mozbuild/backend/recursivemake.py | 6 +++---
69d30f
 1 file changed, 3 insertions(+), 3 deletions(-)
69d30f
69d30f
diff --git a/python/mozbuild/mozbuild/backend/recursivemake.py b/python/mozbuild/mozbuild/backend/recursivemake.py
69d30f
index e3fc8fe..bed5ae9 100644
69d30f
--- a/python/mozbuild/mozbuild/backend/recursivemake.py
69d30f
+++ b/python/mozbuild/mozbuild/backend/recursivemake.py
69d30f
@@ -1457,9 +1457,9 @@ class RecursiveMakeBackend(MakeBackend):
69d30f
                                 raise Exception("Wildcards are only supported in the filename part"
69d30f
                                                 " of srcdir-relative or absolute paths.")
69d30f
 
69d30f
-                            install_manifest.add_pattern_link(basepath, wild, path)
69d30f
+                            install_manifest.add_pattern_copy(basepath, wild, path)
69d30f
                         else:
69d30f
-                            install_manifest.add_pattern_link(f.srcdir, f, path)
69d30f
+                            install_manifest.add_pattern_copy(f.srcdir, f, path)
69d30f
                     elif isinstance(f, AbsolutePath):
69d30f
                         if not f.full_path.lower().endswith(('.dll', '.pdb', '.so')):
69d30f
                             raise Exception("Absolute paths installed to FINAL_TARGET_FILES must"
69d30f
@@ -1468,7 +1468,7 @@ class RecursiveMakeBackend(MakeBackend):
69d30f
                         install_manifest.add_optional_exists(dest)
69d30f
                         absolute_files.append(f.full_path)
69d30f
                     else:
69d30f
-                        install_manifest.add_link(f.full_path, dest)
69d30f
+                        install_manifest.add_copy(f.full_path, dest)
69d30f
                 else:
69d30f
                     install_manifest.add_optional_exists(dest)
69d30f
                     objdir_files.append(self._pretty_path(f, backend_file))
69d30f
-- 
69d30f
2.26.2
69d30f