diff options
| author | Robert Adam <dev@robert-adam.de> | 2021-03-11 21:16:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-11 12:16:08 -0800 |
| commit | 46349895741d3763224394fcfed019a894bd9afd (patch) | |
| tree | d6f46d0124c968dc8a0b0e58525658f619832859 /versions | |
| parent | 2543be2edf60bf38511c2d477bb17b617398a108 (diff) | |
| download | vcpkg-46349895741d3763224394fcfed019a894bd9afd.tar.gz vcpkg-46349895741d3763224394fcfed019a894bd9afd.zip | |
[harfbuzz] work around upstream SameFileError (#16621)
During the configuration of harfbuzz several Python scripts are invoked
that are supposed to copy some files. For some reason however the
scripts end up being instructed to copy files to themselves at which
point a SameFileError is risen, causing the build to fail.
This is a workaround for the underlaying issue that is deemed to be
usptream. The upstream issues are
- https://github.com/mesonbuild/meson/issues/8375
- https://github.com/harfbuzz/harfbuzz/issues/2870
The workaround is to add a patch that makes sure these scripts check
whether source and target file are the same and only invoking the copy
action if they are not.
Fixes #16262
Diffstat (limited to 'versions')
| -rw-r--r-- | versions/baseline.json | 2 | ||||
| -rw-r--r-- | versions/h-/harfbuzz.json | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/versions/baseline.json b/versions/baseline.json index 50f088bcd..50d298a40 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -2378,7 +2378,7 @@ }, "harfbuzz": { "baseline": "2.7.4", - "port-version": 0 + "port-version": 1 }, "hayai": { "baseline": "2019-08-10", diff --git a/versions/h-/harfbuzz.json b/versions/h-/harfbuzz.json index b21931e21..7bdb4e94c 100644 --- a/versions/h-/harfbuzz.json +++ b/versions/h-/harfbuzz.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "e985af9b39fb57ee491c1a773c43334665ddb3d3", + "version-string": "2.7.4", + "port-version": 1 + }, + { "git-tree": "bb9ea75cd35a35e57fb0bf79ff78818c95148fcf", "version-string": "2.7.4", "port-version": 0 |
