]> git.pld-linux.org Git - packages/mozjs68.git/blob - copy-headers.patch
- one more x32 fix
[packages/mozjs68.git] / copy-headers.patch
1 diff -urN mozjs-60.1.0.orig/python/mozbuild/mozbuild/backend/recursivemake.py mozjs-60.1.0/python/mozbuild/mozbuild/backend/recursivemake.py
2 --- mozjs-60.1.0.orig/python/mozbuild/mozbuild/backend/recursivemake.py 2018-06-19 00:24:03.000000000 +0200
3 +++ mozjs-60.1.0/python/mozbuild/mozbuild/backend/recursivemake.py      2019-01-27 15:47:21.573556544 +0100
4 @@ -1427,11 +1427,11 @@
5                                  raise Exception("Wildcards are only supported in the filename part of "
6                                                  "srcdir-relative or absolute paths.")
7  
8 -                            install_manifest.add_pattern_link(basepath, wild, path)
9 +                            install_manifest.add_pattern_copy(basepath, wild, path)
10                          else:
11 -                            install_manifest.add_pattern_link(f.srcdir, f, path)
12 +                            install_manifest.add_pattern_copy(f.srcdir, f, path)
13                      else:
14 -                        install_manifest.add_link(f.full_path, dest)
15 +                        install_manifest.add_copy(f.full_path, dest)
16                  else:
17                      install_manifest.add_optional_exists(dest)
18                      backend_file.write('%s_FILES += %s\n' % (
This page took 0.049783 seconds and 3 git commands to generate.