libelf: Rename to sensible elfutils
[termux-packages] / packages / elfutils / elfcompress.c.patch
1 diff -u -r ../elfutils-0.166/src/elfcompress.c ./src/elfcompress.c
2 --- ../elfutils-0.166/src/elfcompress.c 2016-03-02 11:25:38.000000000 -0500
3 +++ ./src/elfcompress.c 2016-05-04 14:33:03.812183632 -0400
4 @@ -166,7 +166,7 @@
5 struct section_pattern *pattern = patterns;
6 while (pattern != NULL)
7 {
8 - if (fnmatch (pattern->pattern, name, FNM_EXTMATCH) == 0)
9 + if (fnmatch (pattern->pattern, name, 0) == 0)
10 return true;
11 pattern = pattern->next;
12 }