Blame copy-headers.patch

95774b8
From 3b3c8e37cca418e07bdeceaf3a601805df28d925 Mon Sep 17 00:00:00 2001
95774b8
From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= <fzatlouk@redhat.com>
95774b8
Date: Wed, 15 Jul 2020 08:27:39 +0200
95774b8
Subject: [PATCH] build: Copy headers on install instead of symlinking
95774b8
95774b8
Patch by Philip Chimento ported forward to mozjs78
95774b8
---
95774b8
 python/mozbuild/mozbuild/backend/recursivemake.py | 6 +++---
95774b8
 1 file changed, 3 insertions(+), 3 deletions(-)
95774b8
95774b8
diff --git a/python/mozbuild/mozbuild/backend/recursivemake.py b/python/mozbuild/mozbuild/backend/recursivemake.py
95774b8
index d964466..0285ad9 100644
95774b8
--- a/python/mozbuild/mozbuild/backend/recursivemake.py
95774b8
+++ b/python/mozbuild/mozbuild/backend/recursivemake.py
95774b8
@@ -1568,9 +1568,9 @@ class RecursiveMakeBackend(MakeBackend):
95774b8
                                     " of srcdir-relative or absolute paths."
95774b8
                                 )
95774b8
95774b8
-                            install_manifest.add_pattern_link(basepath, wild, dest_dir)
95774b8
+                            install_manifest.add_pattern_copy(basepath, wild, dest_dir)
95774b8
                         else:
95774b8
-                            install_manifest.add_pattern_link(f.srcdir, f, dest_dir)
95774b8
+                            install_manifest.add_pattern_copy(f.srcdir, f, dest_dir)
95774b8
                     elif isinstance(f, AbsolutePath):
95774b8
                         if not f.full_path.lower().endswith((".dll", ".pdb", ".so")):
95774b8
                             raise Exception(
95774b8
@@ -1581,7 +1581,7 @@ class RecursiveMakeBackend(MakeBackend):
95774b8
                         install_manifest.add_optional_exists(dest_file)
95774b8
                         absolute_files.append(f.full_path)
95774b8
                     else:
95774b8
-                        install_manifest.add_link(f.full_path, dest_file)
95774b8
+                        install_manifest.add_copy(f.full_path, dest_file)
95774b8
                 else:
95774b8
                     install_manifest.add_optional_exists(dest_file)
95774b8
                     objdir_files.append(self._pretty_path(f, backend_file))
95774b8
--
95774b8
2.31.1
95774b8