mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 21:25:11 +02:00
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
11 lines
361 B
Diff
11 lines
361 B
Diff
--- a/src/webkit2-extension.c 2017-04-24 19:51:30.000000000 +0000
|
|
+++ b/src/webkit2-extension.c 2017-04-24 19:51:30.000000000 +0000
|
|
@@ -1846,7 +1846,7 @@
|
|
return result;
|
|
}
|
|
|
|
- canonical_path = canonicalize_file_name(file_path);
|
|
+ canonical_path = realpath(file_path, NULL);
|
|
|
|
if (NULL != canonical_path) {
|
|
for (iter = paths; iter; iter = iter->next) {
|